Forum Discussion
EmilyM2019
Helper II
6 years agoDAX for date column
Hi all, I am stuck with a DAX if someone can help me. I have a table with 2 date columns, Column A and Column B. I want a new column (Column C) that will look and see if there is a value...
- 6 years ago
I'm sorry I forget to add the null cases too. Try this:
if [ColumnA] = "" or [ColumnA] = null then [ColumnB] else [ColumnA]Regards,
Anonymous
6 years agoNot applicable
Hi EmilyM2019 ,
Try the following:
Date = if(isblank('Table'[ColumnA]);'Table'[ColumnB];'Table'[ColumnA])