Forum Discussion
Anonymous
4 years agoNot applicable
DAX for empty date column
Hi, I have a data set with a date column (DD.MM.YYYY), a year column and a quarter column. I want to primarily use the date column for time intelligence. However, some rows in the date column ...
v-yalanwu-msft
4 years agoCommunity Support
Hi, Anonymous ;
To create a new column, use:
column = IF ([Date] = blank (), the Date (2022,3,31), [Date])
If you have a lot of conditions, you can also use switch.
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.