Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a variable defined as:
=GetSelectedCount(MarketName)+GetSelectedCount(Facility)>0
Which works correctly if the state is inherited. I want to use the states GroupA and GroupB instead of inherited in two different variables. Although adding the set doesn't seem to work for me:
=GetSelectedCount({GroupA<{}>}MarketName)+GetSelectedCount(GroupA<{}>}Facility)>0
What am I doing incorrectly?
Starting with QV 11.20 SR8 the getselectedcount function supports an alternate state name as third parameter:
=if(GetSelectedCount(MarketName,0,'GroupA')+GetSelectedCount(Facility,0,'GroupA')>0,1,0)
Starting with QV 11.20 SR8 the getselectedcount function supports an alternate state name as third parameter:
=if(GetSelectedCount(MarketName,0,'GroupA')+GetSelectedCount(Facility,0,'GroupA')>0,1,0)