Inputs in an RDK model can be "stressed," which forces all drawn samples to a certain percentile range. These "stress limits" are set using the StressMinPercentile and StressMaxPercentile properties of the RDKInput object. The StressAnalysisEnabled property of the RDKInputs collection object controls globally whether a model should be stressed.
For example, to stress an RDK input to the upper tenth percentile, you would write:
RDKApp.Inputs.StressAnalysisEnabled = TRUE
With RDKApp.Inputs("Revenue")
.StressMinPercentile = .9
.StressMaxPercentile = 1.0
End With