Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
donschmitz
Contributor III
Contributor III

GetSelectedCount not working on individual field

I'm using a variable to create a Title for my graphs based on filter selection the filter is just =[PROVIDERS.PROV_NAME]

It works fine making a filter selection for SURGERY_SECTION & ACADEMIC_SECTIONS but fails to work for PROV_NAME

and I'm stumped as to why?

The basic idea is filtering on these three fields restricts the PROV_ID Key field

Variable vTitle

=IF(GetSelectedCount([PROVIDERS.SURGERY_SECTION]) > 0, GetFieldSelections([PROVIDERS.SURGERY_SECTION])&' Sub-Section',

IF(GetSelectedCount([PROVIDERS.ACADEMIC_SECTION]) > 0, GetFieldSelections([PROVIDERS.ACADEMIC_SECTION])&' Section',

IF(GetSelectedCount([PROVIDERS.PROV_NAME]) > 0, 'Specific Provider', 'Entire Department')))

GetSelectedCount always returns "0" even if multiple are selected.

0 Replies