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.
Hi folks,
If a column number is less tahn 0, i would like to convert to positive. Could you please let me know how can i do that. Apprciate your help on this.
Regards
Pulikkan
Solved! Go to Solution.
Maybe something like:
new column = if [column] < 0 then [column]*-1 else [column]
Delete your old column, rename this column to your old column name.
Hi Pulikkan,
Could you please mark the proper answer as a solution?
Best Regards,
Dale
In DAX, use ABS function. Or do you want M?
M
Maybe something like:
new column = if [column] < 0 then [column]*-1 else [column]
Delete your old column, rename this column to your old column name.