EmilieDurand
3 years agoNew Contributor II
Scenario Business Rule
Hi all! I need your help with a finance BR. I have a Budget scenario with different versions children members (ex: Budget, Budget_v1, Budget_V2, etc.) Right now my script goes like this:
Dim isBudget As Boolean = api.Pov.Scenario.Name.XFContainsIgnoreCase("Budget")
If isBudget Then
I am trying to find a script where I don't use "Contains", as if new scenarios are created in the future, the word "Budget" will always need to be apart of the member name, which is not ideal. Any suggestions how I can call the children members of Budget?
Thanks