Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi -
Is there a way to NOT display a chart or KPI unless a date is selected in the filter criteria ?
Therefore, IF GetFieldSelections (DATE) is null, can you somehow not display a specific chart??
Thanks - Jerry
if( IsNull(GetFieldSelections(DATE)), 0, AMOUNT)
this did the trick ! Thanks - Jerry
Hi - thanks for your response. That feature only lets me select certain visualizations though.
Any other thoughts ? Jerry
I tried this - no luck:
IF (GetFieldSeleactions (DATE) isnull(), 0, AMOUNT)
thoughts ? Jerry
if( IsNull(GetFieldSelections(DATE)), 0, AMOUNT)
this did the trick ! Thanks - Jerry
I was able to make this work in my App, but some of the months (that have data available) still show a 0, any thoughts on that?
if( IsNull(GetFieldSelections(DATE)), 0, AMOUNT)