Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I need to format the rows to highlight SQEP like in the example below;
Where role is SRO or Programme Manager and Status is Completed then 'green', if status is blank then 'red'.
Any help is really appreciated.
Solved! Go to Solution.
Hi , @Matt_W2022
According to your description, you want to "Colour/highlight a row based on multiple criteria".
Here are the steps you can refer to:
(1)This is my test data :
(2)We can create a measure :
Measure = var _role =SELECTEDVALUE('Table'[Role])
var _status = SELECTEDVALUE('Table'[MPLA Status])
return
IF(_role in {"SRO","Programme Manager"} && _status="Completed" , "green", "red")
(3)Then we can configure the measure on the table field :
We can click the "fx" icon to configure it:
If you want to show color in a row, you need to configure the measure for all the fileds:
(4)The result is as follows:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @Matt_W2022
According to your description, you want to "Colour/highlight a row based on multiple criteria".
Here are the steps you can refer to:
(1)This is my test data :
(2)We can create a measure :
Measure = var _role =SELECTEDVALUE('Table'[Role])
var _status = SELECTEDVALUE('Table'[MPLA Status])
return
IF(_role in {"SRO","Programme Manager"} && _status="Completed" , "green", "red")
(3)Then we can configure the measure on the table field :
We can click the "fx" icon to configure it:
If you want to show color in a row, you need to configure the measure for all the fileds:
(4)The result is as follows:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thank you for your help
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |