CB.GetAssumPercent Example 1
This example runs a simulation of 1000 trials and then puts the values for every fifth percentile into an array called Percents.
In a macro, you can enter:
CB.Simulation 1000
Dim Percents(19) As Double
For i=1 To 19
CB.CheckData
Percents(i) = CB.GetAssumPercent (Range("C9"),i*5)
Next i