Forum Discussion

kumsha1's avatar
kumsha1
Post Patron
3 years ago
Solved

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 ...
  • DataVitalizer's avatar
    3 years ago

    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