Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
harika18
Contributor III
Contributor III

Selections not working properly

Hello,

By default my dashboard should be empty when opening the app so I wrote the condition if(Getselectedcount(CIN)=0,' ',CIN) in CIN dropdown menu .For suppose I selected CIN:2-OW FO

In the table , I wrote the same condition for all fields .But when I select AcctCurrency(NA) from the table my first selection is reflecting all the CIN's for which AcctCurrency is 'NA'.What can be done?Any suggestions

when I select AccCurr NA from table ,all the AccCurr with NA are reflecting in my first selectionwhen I select AccCurr NA from table ,all the AccCurr with NA are reflecting in my first selectionFirst I  will select CINFirst I will select CIN

Labels (1)
1 Reply
vmoreno2605
Creator
Creator

I dunno what is causing your problem since i haven't use that syntaxis for GetSelectedCount, the way i use it in order to block a dashboard is this:

 

If(GetSelectedCount(YourField)>0,1,0)

 

Here, "1" represents show info and "0" represents don't show info

 

This is the way i use it, i hope this helps