Forum Discussion
Amzad
8 years agoFrequent Visitor
Converting to DAX
I Have a null and Blank Fields in a Sites Column can any give me DAX function if it's in SQL i can achive using --> isnull (nullif ([site],'') ,'UNK') as [Site] can any one give me ...
- 8 years ago
- 8 years ago
- 8 years ago
Like Phil_Seamark points out.
Create a calculated column in the table where [Site] column is and use his formula. You might need to use ";" instead of "," depending on your locale settings.
Yggdrasill
8 years agoResponsive Resident
Like Phil_Seamark points out.
Create a calculated column in the table where [Site] column is and use his formula. You might need to use ";" instead of "," depending on your locale settings.
Amzad
8 years agoFrequent Visitor
Thanks @Phil_Seamark && Yggdrasill it works :smileyhappy : Thanks Again