Mar 16, 2023 11:02 PM
Solved! Go to Solution.
Mar 16, 2023 11:21 PM
Hey @MettaSong,
Did you try to use the ABS formula for that field. I recommend this because you actually want to have the absolute value from your negative number values.
This solution will work either your field is number either it is text.
Yours sincerely,
Dimitris Goudis
Mar 17, 2023 12:00 AM
Utilizing Dimitris solution of using ABS, you could put it inside an `IF()` like so:
IF(
Amount < 0,
ABS(Amount)
)
Mar 16, 2023 11:21 PM
Hey @MettaSong,
Did you try to use the ABS formula for that field. I recommend this because you actually want to have the absolute value from your negative number values.
This solution will work either your field is number either it is text.
Yours sincerely,
Dimitris Goudis
Mar 17, 2023 12:00 AM
Utilizing Dimitris solution of using ABS, you could put it inside an `IF()` like so:
IF(
Amount < 0,
ABS(Amount)
)
Mar 17, 2023 12:38 PM
Thank you @TheTimeSavingCo & @Dimitris_Goudis - that is an elegant solution. I had never even considered the ABS formula. Perfect! I greatly appreciate your time and wisdom!