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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I'm trying to create a column which looks if text in Column A = "" (Which means it is unassigned), and if the deadline date is within 7 days of todays date.
I've tried lots of different things but still seem to be getting an error.
Here is my code below:
=if [Assigned to] = "" or Date.AddDays([Deadline Date], -7) then "High" else "Low"
You need a comparator in your Date.AddDays function. At the moment, you are saying "if assigned to is blank, or (deadline date minus 7) then high, otherwise low". You need to say "if assigned to is blank, or (deadline date minus 7) IS LESS THAN TODAY then high, otherwise low".
Try:
if [Assigned to] = "" or Date.AddDays([Deadline Date], -7) < DateTime.LocalNow() then "High" else "Low"
or:
if [Assigned to] = "" or Duration.Days(DateTime.LocalNow() - [Deadline Date]) < 7 then "High" else "Low"
The syntax may not be exact but I hope you get the idea.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 55 | |
| 42 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 113 | |
| 108 | |
| 38 | |
| 35 | |
| 26 |