Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I get the impression that GetPossibleCount() does not support Alternate States.
GetPossibleCount(SomeField) seems to work, yet GetPossibleCount({DifferentState} SomeField) does not.
So I am wondering if this is a bug or a missing feature?
Just for reference, this is why I like to use it:
I have a line chart in which I am comparing two products. The second product is selected in a filter in an Alternate State. I set a calculation condition on the chart to only work if only one product is selected (with GetPossibleCount()) yet it starts complaining when I add the {State} part.
These field functions don't support this feature. You could alternatively use :
Count({State} Distinct Field)
These field functions don't support this feature. You could alternatively use :
Count({State} Distinct Field)
So missing feature it is.
Thanks for the alternative solution!