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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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.