Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a table in ssms and on using the case statement, it is working as expected as shown:
But doing the same thing in Power BI with addiing columns, conditional statement, it is not working as expected. The screenshot is below. I am stuck here. Please help me out.
Solved! Go to Solution.
you can try this
= Table.AddColumn(#"Changed Type", "Custom", each if [Format] = "Percentage" then [value]*100 else [value])
Proud to be a Super User!
you can try this
= Table.AddColumn(#"Changed Type", "Custom", each if [Format] = "Percentage" then [value]*100 else [value])
Proud to be a Super User!
Remove the quotation marks and use square brackets to denote a column - you should have something like [Value] * 100.
(The quotation marks are telling Power Query to return a string, so it's not doing any maths for you)