Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
gandalfgray
Specialist II
Specialist II

Hide chart if selection is made in certain field?

Hi

I would like to conditionally show a chart or table only if no selection is made in a specific field, lets call it "inv_month".

I came up with this solution in the calcuation condition:

Count({<inv_month=>} inv_month)=Count(inv_month)

but is there a better way?

1 Solution

Accepted Solutions
Anonymous
Not applicable

A better way is to use GetSelectedCount:

GetSelectedCount(inv_month)=0

Regards,

Michael

View solution in original post

2 Replies
Anonymous
Not applicable

A better way is to use GetSelectedCount:

GetSelectedCount(inv_month)=0

Regards,

Michael

gandalfgray
Specialist II
Specialist II
Author

Thanks Michael

I new it was an easy one....

Actually in other cases I used GetSelectedCount as you suggested...