Forum Discussion
Anonymous
5 years agoNot applicable
Create dummy column with null values
Hello Team I hope you are doing well. I am trying to create a dummy column with null values in DAX. I'm trying to do the DAX equivalent of this SQL query: Select null as ColumnA Do...
- 5 years ago
Hi Anonymous ,
Please try the following dax:
EVALUATE SUMMARIZE ( Table,Table[column1],Table[column2],"newcolumn",blank())If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
amitchandak
5 years agoSuper User
Anonymous , Try like
New column = blank()
or
new column =""