Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a pivor table with 11 expresions. I also have a field called 'Indicadores' which contains eleven tags.
In order to choose which expressions I wanto to show in the pivot table I wrote a Conditional in each expression so Indicadores=correspondentnametag.
I put Indicadores as a select field and the condition works OK if I choose only one item but the pivot table appears empty with the message 'All expressions disabled' if I choos several items.
How can I choose several items and show its correspondet expressions?
Thank you.
You can work with a string matching, but I like this:
=count({<Indicadores *= {'correspondentnametag'}>} Indicadores)
as expression for the conditional.
Regards,
Stefan
You can work with a string matching, but I like this:
=count({<Indicadores *= {'correspondentnametag'}>} Indicadores)
as expression for the conditional.
Regards,
Stefan
Prefect. Thank you.