
Contributor III
2022-08-18
04:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Text with bold font
Hi experts
Is it possible to set individually the names of measures in bold or other colour?
thanks, tom
2,574 Views
4 Replies

Contributor III
2022-08-18
04:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Tom. You can colored measure. write expression for set color.
Also you can change color in styles.
In your case write next expression:
if( col_name = 'Staff Costs', 'Red', 'Black' )
2,568 Views

Partner - Master
2022-08-18
04:55 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use these in the Text Color and Text Format under the expression
=IF(FIELD='Staff Costs',LightRed())
=IF(FIELD='Staff Costs','<B>')
2,567 Views

Contributor III
2022-08-18
05:00 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for your proposals...I have a measure here and not a dimension.
The measures name: "Staff Costs".
How would the code look like for a measure text?
2,566 Views

Contributor III
2022-08-18
05:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
measure also support background color.
my example with code
if(username= 'john.doe', 'red', red() )
2,559 Views
