Forum Discussion
deys
5 years agoNew Member
DAX function
HI, I am new to PWBI DAX function. Can anyone help me with correct DAX function to show this number "-0.7%" as (0.7%). Thanks, Simky
community_pinki
5 years agoHelper II
Hey deys ,
You can use the ABS function (absolute value).
You can also multiple by -1, "[Column] * -1"
With ABS you could get rid of negative numbers while not impacting the positive numbers.