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 @Anonymous ,
If you need measure to create [Status], then try codes below.
Status=
VAR _m=DATEDIFF(TODAY(), MAX('MB final'[Custom.1]),MONTH)
RETURN
SWITCH(TRUE(),
_m=0, "1.On Time",
_m>0&&_m<=3, "2.delayed 1-3 month",
_m>3&&_m<=6,"3.delayed 3-6 month",
"4.delayed >6 month"
)
If you need calculated column to create [Status], then try codes below.
Status=
VAR _m=DATEDIFF(TODAY(), 'MB final'[Custom.1],MONTH)
RETURN
SWITCH(TRUE(),
_m=0, "1.On Time",
_m>0&&_m<=3, "2.delayed 1-3 month",
_m>3&&_m<=6,"3.delayed 3-6 month",
"4.delayed >6 month"
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Internal and confidential content is permitted. Translate unfortunately it doesn't work for me. can you please show me this with a concrete besipiel?
Hi @Anonymous ,
If you need measure to create [Status], then try codes below.
Status=
VAR _m=DATEDIFF(TODAY(), MAX('MB final'[Custom.1]),MONTH)
RETURN
SWITCH(TRUE(),
_m=0, "1.On Time",
_m>0&&_m<=3, "2.delayed 1-3 month",
_m>3&&_m<=6,"3.delayed 3-6 month",
"4.delayed >6 month"
)
If you need calculated column to create [Status], then try codes below.
Status=
VAR _m=DATEDIFF(TODAY(), 'MB final'[Custom.1],MONTH)
RETURN
SWITCH(TRUE(),
_m=0, "1.On Time",
_m>0&&_m<=3, "2.delayed 1-3 month",
_m>3&&_m<=6,"3.delayed 3-6 month",
"4.delayed >6 month"
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |