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
dofrancis3
Resolver I
Resolver I

Date "IF"

Hi Guys!

I need your help!

Could you help me with a DAX mesure wicth can help me to have the status colomn based on stard and end date.

Please the screen below:

dofrancis3_0-1716027903772.png

Thank you for your help

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@dofrancis3 Maybe:

Measure = 
  VAR __Today = TODAY()
  VAR __Start = MAX( 'Table'[Started] )
  VAR __End = MAX( 'Table'[end_date] )
  VAR __Result = 
    SWITCH( TRUE(), 
      __Start > __Today, "Upcoming",
      __End < __Today, "Completed",
      "Ongoing"
    )
RETURN
  __Result



Column = 
  VAR __Today = TODAY()
  VAR __Start = [Started]
  VAR __End = [end_date]
  VAR __Result = 
    SWITCH( TRUE(), 
      __Start > __Today, "Upcoming",
      __End < __Today, "Completed",
      "Ongoing"
    )
RETURN
  __Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

@dofrancis3 Maybe:

Measure = 
  VAR __Today = TODAY()
  VAR __Start = MAX( 'Table'[Started] )
  VAR __End = MAX( 'Table'[end_date] )
  VAR __Result = 
    SWITCH( TRUE(), 
      __Start > __Today, "Upcoming",
      __End < __Today, "Completed",
      "Ongoing"
    )
RETURN
  __Result



Column = 
  VAR __Today = TODAY()
  VAR __Start = [Started]
  VAR __End = [end_date]
  VAR __Result = 
    SWITCH( TRUE(), 
      __Start > __Today, "Upcoming",
      __End < __Today, "Completed",
      "Ongoing"
    )
RETURN
  __Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Thank you so much @Greg_Deckler

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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.