Forum Discussion
victortei
3 months agoNew Contributor III
I’m not sure how you're nesting your If statements, but I’d recommend starting by checking if the value is Fcst10, Fcst11, or Fcst12 first in your conditional checks. This will ensure that you evaluate the exceptions early on (10, 11, and 12). Something like this:
If ([|!Scenario_WaterFall_MemberList!|] Contains Fcst12) Then
Condition
Else If ([|!Scenario_WaterFall_MemberList!|] Contains Fcst10) Then
Condition
Else If ([|!Scenario_WaterFall_MemberList!|] Contains Fcst11) Then
Condition
Else If ([|!Scenario_WaterFall_MemberList!|] Contains Fcst1) Then
Condition
...
'Check Fcst 2-8
Else If ([|!Scenario_WaterFall_MemberList!|] Contains Fcst9) Then
Condition
End If
Related Content
- 3 years ago
- 10 months ago
- 2 years ago
- 9 months ago