Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a chart and I want to hide that chart when user will select any Value from Region Text Box.
How to do this?
Please help.
Thanks,
Sarif
May be use this condition in layout tab for chart
If(GetSelectedCount(Region)>0, 0, 1)
May be use this condition in layout tab for chart
If(GetSelectedCount(Region)>0, 0, 1)
Go to layout tab of chart properties and click on conditional show and use following in conditional show,
if(GetFieldSelections(Region),0,1)
Thanks,
Pooja