Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
midlandjoe
Frequent Visitor

Return text based on text and date

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"

 

 

1 REPLY 1
AndrewPF
Helper V
Helper V

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.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors