Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have a current "dimension" called NIVEL with several elements as shown:
Now I want to create a bar chart with a CALCULATED DIMENSION but including ONLY the GREEN shaded elements.
How can I accomplish this??
if you want to use a calculated dimension, maybe like
=if( wildmatch( Nivel, 'Total*'), Nivel)
if you want to use a calculated dimension, maybe like
=if( wildmatch( Nivel, 'Total*'), Nivel)
Or you can try
=If( NivelLike 'Total*', Nivel, Null())