Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
zied_ahmed1
Specialist
Specialist

Condition to display a graph

Hello, I need if we don't select values for the two filters i will have a message in the table (please select Année and Mois 

Cond.png

Thanks for help

1 Solution

Accepted Solutions
felipedl
Partner - Specialist III
Partner - Specialist III

Would be no difference how many fields you need,

Just use:

if(GetSelectedCount([Field1])>0 and GetSelectedCount([Field2])>0,1,0)

View solution in original post

5 Replies
felipedl
Partner - Specialist III
Partner - Specialist III

Hi Zied,

You have Data Handling (mine is in portuguese, but the place is the same, so im translating the name) as below to put an expression for the calculation condition  and according message.

sample.png

zied_ahmed1
Specialist
Specialist
Author

Thanks, I know this but what i add like a condition for the two filters

felipedl
Partner - Specialist III
Partner - Specialist III

Would be no difference how many fields you need,

Just use:

if(GetSelectedCount([Field1])>0 and GetSelectedCount([Field2])>0,1,0)

zied_ahmed1
Specialist
Specialist
Author

Thanks for your time , but it doesn't work for me

felipedl
Partner - Specialist III
Partner - Specialist III

What would you need specifically than?