Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
alielzaa
Frequent Visitor

Colour formatting on Measure

Heya everyone!

 

Ive got another query, in my report I have a measure which states that if a text contains "true" it will display active and if its false it will display "closed".

 

Status = IF(MAX('table'[column]) = "True","Closed","Active")

I also wanted to add colour formatting to this in my quick measure. After some research I heard that colour formatting is not a option within DAX but I wanted to confirm

 

IF its not possible, Could I possible make a measure to display a green "active" if true else display a "red" closed by using two different text boxes?

 

Any help is appreciated.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@alielzaa Please create a measure for color formatting

Color = IF(MAX('Table'[Status])="Closed","#ff0000","#66ff33")

Right click on status measure

Select conditional formatting >> Background color

Select format by field value

In based on field select Color measure created above

click oKcolorformatting.png 

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

@alielzaa Please create a measure for color formatting

Color = IF(MAX('Table'[Status])="Closed","#ff0000","#66ff33")

Right click on status measure

Select conditional formatting >> Background color

Select format by field value

In based on field select Color measure created above

click oKcolorformatting.png 

Hey Vimal,

 

I cannot seem to find the conditional formatting option when I right click on status measure:

 

 

status measure.PNG

 

Kind regards,

Ali

Anonymous
Not applicable

Add that measure in to a table visual and right click on the measure name under visualizations. Please refer the scrrenshot for the same.

 

Untitled.png

Hello @Anonymous 

I have it already on my vizualisation and added the field but i still do not get the colour formatting option.

 

Kind regards,

Ali

Anonymous
Not applicable

Right click on the measure name under fileds or you can find the option under format, next to fileld tab.

Tahreem24
Super User
Super User

Hi @alielzaa ,

 

You can create a masure like below with up and down arrow to show you status:

 

Icon = SWITCH([Status],"Closed",UNICHAR(129095),"Active",UNICHAR(129093))
 
Please give THUMBS UP for support and mark it as a solution if it helps you! 

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.