Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
How to get this calculated field from Tableau to Power BI.
if [Order Set] then [Customer Name] else
"" end
Solved! Go to Solution.
Ah, OK. Then you can create a column like
New column =
IF ( NOT ISBLANK ( 'Table'[Order set] ), 'Table'[Customer name] )
Use Power Query to add a Conditional Column.
Yes, But the calculated column/ sets cannot be used in Power Query editor right.
Here order set is a group created in Power BI
Ah, OK. Then you can create a column like
New column =
IF ( NOT ISBLANK ( 'Table'[Order set] ), 'Table'[Customer name] )