Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a requirement to highlight weekend (WEEKDAY 1 and 7) rows as shown in this graphic. I do have a condition set on the value and if there are any values entered into a weekend, the cell does highlight yellow. However, with or without any value, I would like to have the row highlight yellow (or a light yellow). Thanks for the information
Solved! Go to Solution.
Hi,
do this for each field you have added to your table visual:
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Hi @guyatisk ,
Did you apply the date field to your matrix visual? If so, you can create the following measure.
Measure =
VAR _seldate =
SELECTEDVALUE ( 'Table'[Date] )
RETURN
IF ( WEEKDAY ( _seldate, 1 ) IN { 1, 7 }, "Yellow" )
Then, use the conditional format based on the above metric. You can refer to the official documentation below for details.
You can find the details in the attachment. If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi,
do this for each field you have added to your table visual:
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |