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
Ah, OK. Then you can create a column like
New column = IF ( NOT ISBLANK ( 'Table'[Order set] ), 'Table'[Customer name] )
3 Replies
- johnt75Super User
Use Power Query to add a Conditional Column.