Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello
I want to asked how to do conditional formatting on weekly data.
I want the background would be red if any week is less than previous week and the background would be green if its greater.
I already have date table in here.
The example data look like this :
Thank you
Solved! Go to Solution.
Hi @Anonymous ,
You can use a custom measure to calculate the differences between weeks and assign a color code to each result, and then use this measure in the conditional formatting using the option 'Field Value' (please refer to image below).
An example of a custom measure for color coding:
Color Coding =
SWITCH(
TRUE(),
[This Week] < [Last Week], "#DC143C" // Red
[This Week] > [Last Week], "#85cc18" // Green
[This Week] = [Last Week], "#0c0c0c" // Black
)
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
Best regards,
Joao Ribeiro
Hi @Anonymous ,
You can use a custom measure to calculate the differences between weeks and assign a color code to each result, and then use this measure in the conditional formatting using the option 'Field Value' (please refer to image below).
An example of a custom measure for color coding:
Color Coding =
SWITCH(
TRUE(),
[This Week] < [Last Week], "#DC143C" // Red
[This Week] > [Last Week], "#85cc18" // Green
[This Week] = [Last Week], "#0c0c0c" // Black
)
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
Best regards,
Joao Ribeiro
@Anonymous it was just an example of measures with the current and last week values for the metric you are trying to compare. Please let me know if you need help with this part too.
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
Best regards,
Joao Ribeiro
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 38 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |