This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have a table that shows data based on date range, is there a way to highlight or bold the date that is in a current week?
Solved! Go to Solution.
Hi @RickWelfel
create the measure and put it in Background color of Values you want,
conditional format =
VAR _today =
TODAY () // get current date
VAR _oneweekago =LASTDATE(CALCULATETABLE(DATEADD ( 'date'[Date], -7, DAY ),ALL('date')))//get the date one week ago, e.g. today= 2021/6/21, then _oneweekago=2021/6/14
RETURN
IF (
MIN ( 'date'[Date] ) >= _oneweekago
&& MIN ( 'date'[Date] ) <= _today,
"Yellow"
)
result:
See sample file attached bellow.
Best Regards,
Community Support Team _ Tang
If this post helps, please consider Accept it as the solution✔️ to help the other members find it more quickly.
I was able to get the formula working but giving me a MIN function only accpets a column reference as an argument.
Hi @RickWelfel
in my sample,
MIN ( 'date'[Date] )
'date'[Date] is a column.
what do you put in function Min()?😅
Best Regards,
Community Support Team _ Tang
If this post helps, please consider Accept it as the solution✔️ to help the other members find it more quickly.
This is what I am trying to state:
Hi @RickWelfel
use:
current week =
VAR _today =
TODAY ()
VAR _oneweekago =
LASTDATE (
CALCULATETABLE (
DATEADD ( 'Combined Schedule'[Start].[Date], -7, DAY ),
ALL ( 'Combined Schedule' )
)
)
RETURN
IF (
MIN ( 'Combined Schedule'[Start].[Date] ) >= _oneweekago
&& MIN ( 'Combined Schedule'[Start].[Date] ) <= _today,
"Yellow"
)
FYI:
https://docs.microsoft.com/en-us/dax/all-function-dax
Best Regards,
Community Support Team _ Tang
If this post helps, please consider Accept it as the solution✔️ to help the other members find it more quickly.
Hi @RickWelfel
create the measure and put it in Background color of Values you want,
conditional format =
VAR _today =
TODAY () // get current date
VAR _oneweekago =LASTDATE(CALCULATETABLE(DATEADD ( 'date'[Date], -7, DAY ),ALL('date')))//get the date one week ago, e.g. today= 2021/6/21, then _oneweekago=2021/6/14
RETURN
IF (
MIN ( 'date'[Date] ) >= _oneweekago
&& MIN ( 'date'[Date] ) <= _today,
"Yellow"
)
result:
See sample file attached bellow.
Best Regards,
Community Support Team _ Tang
If this post helps, please consider Accept it as the solution✔️ to help the other members find it more quickly.
Thanks for the help. I am still having issues with typing VAR_Today, this is giving me an error.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 27 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |