Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello Community,
I hope you are good and wondering if you can help me please.
I'd like to create a new column called STATUS which says:
1) Before today = Overdue
2) Today = Due Today
3) After today = Upcoming
Thanking you very much in advance.
Solved! Go to Solution.
You could create a column like
Status =
VAR DaysDiff =
DATEDIFF ( TODAY (), 'Table'[Scheduled date], DAY )
RETURN
SWITCH (
TRUE (),
DaysDiff < 0, "Overdue",
DaysDiff > 0, "Upcoming",
"Due today"
)
Thank you Jon, it got me started. Much appreciated
You could create a column like
Status =
VAR DaysDiff =
DATEDIFF ( TODAY (), 'Table'[Scheduled date], DAY )
RETURN
SWITCH (
TRUE (),
DaysDiff < 0, "Overdue",
DaysDiff > 0, "Upcoming",
"Due today"
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 10 | |
| 10 | |
| 8 | |
| 8 |