Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am creating a table where I need to show 4 values from a field if nothing is selected , and 5 values if a filter is selected.
Ex:
Categories (Direct , Indirect , Passive , Active , ALL) -- If a filter "Grouping " is selected
Categories (Direct , Indirect , Active , ALL) -- If no value from filter "Grouping " is selected
TIA
Try this
=aggr(if(GetSelectedCount(Grouping) > 0,
{$<Categories = {"Direct", "Indirect", "Passive", "Active", "ALL"}>},
{$<Categories = {"Direct", "Indirect", "Active", "ALL"}>}
),
Categories
)