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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I'm trying to solve an issue, in my table I've got a date column (deadline) and a status column (Status). Now I want to add a measured column called (overdue). When field (deadline =<today) and status IN "Ongoing", "Planned" field (overdue) should be filled with Yes.
I tried the following:
| Country | Property | Type | Description | Year | Status | Deadline | Responsible auditor | Overdue |
| Netherlands | Office A | Audit | WELL V2 | 2022 | Complete | 31/03/2022 | Janssen | No |
| Netherlands | Office B | Audit | WELL V2 | 2022 | Ongoing | 30/11/2022 | Pieters | No |
| Germany | Office C | Audit | WELL V2 | 2022 | Ongoing | 31/10/2022 | Beckers | Yes |
| Germany | Office D | Audit | WELL V2 | 2022 | Planned | 31/12/2022 | Beckers | No |
Hopefully anybody can help me out with this, thanks in advance for your response.
Solved! Go to Solution.
You're missing an extra &
Overdue = IF(Sheet1[Deadline] < TODAY() && Sheet1[Status] in {"Ongoing", "planned"}, "True","False")
& is the text concatenation operator, && is logical and.
Sorry, this was a rookie mistake, thanks very much for the solution!
You're missing an extra &
Overdue = IF(Sheet1[Deadline] < TODAY() && Sheet1[Status] in {"Ongoing", "planned"}, "True","False")
& is the text concatenation operator, && is logical and.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!