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
Lyle
Frequent Visitor

How to create measures for TASKS

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

 

Lyle_0-1675168839211.png

 

Thanking you very much in advance.

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

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"
    )

View solution in original post

2 REPLIES 2
Lyle
Frequent Visitor

Thank you Jon, it got me started. Much appreciated

johnt75
Super User
Super User

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"
    )

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.