Forum Discussion

marksappleton's avatar
marksappleton
Frequent Visitor
7 years ago
Solved

Need help: Date indicator column

Hello,   I am a beginner with Dax and I am trying to accept two columns ("Date" and "Reported Date") and each columns contains a date formatted date value.   I am looking to create a calculated c...
  • Anonymous's avatar
    Anonymous
    7 years ago

    Hello.

     

    You could simply add new column then type this in the formula bar:

     

    New Column = IF( TableName[Date] = TableName[Reported Date], 1, 0)

    Hope this helps!