Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am trying to create a dynamic caption, where I want to put a condition if particular filter is active then return that filter name else some default.
I was able to do it with Month filter but not able to do it for non dates variables.
if(only(month),'Vs.Segment','Vs.Total')
could anyone possibly help?
Thanks,
Varun Singhal
Use something like below
=IF(GetSelectedCount(Month) > 0,'Vs.Segment','Vs.Total')
Use something like below
=IF(GetSelectedCount(Month) > 0,'Vs.Segment','Vs.Total')
Thanks Manish, It worked!!
Kind Regards,
Varun Singhal