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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
kumsha1
Post Patron
Post Patron

DAX help

We've following data and looking for some help to get the DAX correct..,TIA

Requirement is when Item ID=10059 && TODAY() <= DATE(2024, 1, 1) then change the Curriculum_Complete_Flag="Complete" ELSE Curriculum_Complete_Flag

 

kumsha1_0-1689061078070.png

 

1 ACCEPTED SOLUTION
DataVitalizer
Super User
Super User

Hi @kumsha1 

Create this new calculated column

 

Curriculum_Complete_Flag = IF( 'Table'[Item ID] = 10059 && TODAY() <= DATE(2024, 1, 1), "Complete", 'Table'[Curriculum_Complete_Flag] )


Did it work ? 👌 Mark it as a solution to help spreading knowledge 👉 A kudos would be appreciated

View solution in original post

1 REPLY 1
DataVitalizer
Super User
Super User

Hi @kumsha1 

Create this new calculated column

 

Curriculum_Complete_Flag = IF( 'Table'[Item ID] = 10059 && TODAY() <= DATE(2024, 1, 1), "Complete", 'Table'[Curriculum_Complete_Flag] )


Did it work ? 👌 Mark it as a solution to help spreading knowledge 👉 A kudos would be appreciated

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.