Forum Discussion
Anonymous
6 years agoNot applicable
reverse a value
Is it possible to reverse the value eg -$12,000 to become $12,000 and visa a versa $11,500 becomes -$11,500
- 6 years ago
Hi Anonymous ,
Have you tried to multiply the value by -1 ?
Anonymous
6 years agoNot applicable
HI Anonymous ,
You can create a column.
COLUMN1 =
SWITCH(
True(),
'Table'[Actual] > 0 , - 'Table'[Actual],
ABS('Table'[Actual])
)
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)