Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a straight table with column names, i need to exclude certain names from appearing in the staright table, how can i do that??
Hi,
Using calculated dimension we can able to achieve your expected output.
aggr(only({<Employer-={'A','B','C'}>} Employer),Employer)
or if you prefer "if"
aggr(if(match(Employer,'A','B','C')=0, Employer),Employer)
In any case, check "suppress when value is null"
Hi,
Using calculated dimension we can able to achieve your expected output.
aggr(only({<Employer-={'A','B','C'}>} Employer),Employer)
or if you prefer "if"
aggr(if(match(Employer,'A','B','C')=0, Employer),Employer)
In any case, check "suppress when value is null"
could you please explain more ?