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 I want to ask, so I have data like this rental start and rental end, I want the output in the SLA column if today's date is close to the rental end date then the output will be "near overdue", if today's date has reached the rental end then the output will be "overdue" but if today's date has passed from the rental end date maybe about a month then the output will be "flag overdue"
Solved! Go to Solution.
please try;
SLA =
SWITCH(
TRUE(),
TODAY() >= [Rental End], "Overdue",
TODAY() >= DATE([Rental End], -30), "Flag Overdue",
TODAY() >= [Rental End] - 7, "Near Overdue",
"Valid"
)
please try;
SLA =
SWITCH(
TRUE(),
TODAY() >= [Rental End], "Overdue",
TODAY() >= DATE([Rental End], -30), "Flag Overdue",
TODAY() >= [Rental End] - 7, "Near Overdue",
"Valid"
)
thank you, I'll try this one
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!
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 6 | |
| 5 | |
| 3 |