Forum Discussion
marksappleton
7 years agoFrequent Visitor
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...
- Anonymous7 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!
Anonymous
7 years agoNot applicable
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!
marksappleton
7 years agoFrequent Visitor
Further to my other comments, given there are two tables, does it matter what table the column is created in?