Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
for a calculation condition of a chart I'd like to use the amount of possible values from a field in an alternate state.
The function: GetPossibleCount( . . . ) don't know set analysis for something like:
GetPossibleCount( {$<MyField=MyOtherState::MyField>} AnotherField )
How can I do this?
Best regards
Christian
I need the result for a calculation condition but I find a solution:
not( isnull( only( {MyAlternateState} MyField ) ) )
Thanks for your answer and best regards
Maybe you can try with the standard Count function, but applying your alternate state:
Count({MyOtherState} Distinct AnotherField)
JG
I need the result for a calculation condition but I find a solution:
not( isnull( only( {MyAlternateState} MyField ) ) )
Thanks for your answer and best regards