Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.