Forum Discussion
asdf1608
3 years agoHelper V
Need help with DAX
How to get this calculated field from Tableau to Power BI. if [Order Set] then [Customer Name] else "" end
- 3 years ago
Ah, OK. Then you can create a column like
New column = IF ( NOT ISBLANK ( 'Table'[Order set] ), 'Table'[Customer name] )
asdf1608
3 years agoHelper V
Yes, But the calculated column/ sets cannot be used in Power Query editor right.
Here order set is a group created in Power BI
johnt75
3 years agoSuper User
Ah, OK. Then you can create a column like
New column =
IF ( NOT ISBLANK ( 'Table'[Order set] ), 'Table'[Customer name] )