Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Is it possible to show a sheet only if 3 filters are selected. plz let me know if its possible.
Regards
Sagar Gupta
Hi,
how many filters you have?
you need to frame expression like below and which is to be placed in Sheet properties-->General-->conditional expression
=RangeSum(if(GetSelectedCount(Field1),1),if(GetSelectedCount(Field2),1),if(GetSelectedCount(Field3),1),
if(GetSelectedCount(Field4),1),if(GetSelectedCount(Field5),1),if(GetSelectedCount(Field6),1))>3
Celambarasan
This might work:
substringcount(getcurrentselections(),':')>=3
substringcount(getcurrentselections(),':')>=3
That's a nice solution John.
Works perfect here.