Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If I have a Dimension, let´s say Account
Account = (Revenues,Costs, Ebitda,NetIncome)
How can I make EBITDA black and bold within the Dimension in a Pivot Table ???
Appreciate the help
Hi,
In your table properties, expand the dimension "account" and edit the "Text Format". In order to have the Ebitda Account displayed as bold just write this kind of code:
=if(Account='Ebitda', '<B>')
I think you can do it by chart properties --> Visual Cues --> select the expression and select Bold checkbox..
You can also add calculated font color expression in dimension and expressions...
Thanks for your reply,
My question is how to do it in a dimension, I run out of ideas. I would appreciate if you can guide me through
Thanks
Hi,
In your table properties, expand the dimension "account" and edit the "Text Format". In order to have the Ebitda Account displayed as bold just write this kind of code:
=if(Account='Ebitda', '<B>')
Thanks a lot man, It worked perfectly.