09-18-2023 03:29 AM
Apparently Incorta v6 still does not include the ability to show negative numbers in brackets i.e. (123) not -123
Our finance users are REALLY annoyed that this isn’t a standard feature !
Does anyone have any advise on how / if this can be done
And can it be included in the development plan please.
09-19-2023 10:51 AM
Hi Brian -
A solution today could be using the following formula to format.
case(
NegativeNumbers.Sample.Profit < 0,
'(' + abs(
NegativeNumbers.Sample.Profit
) + ')',
string(
NegativeNumbers.Sample.Profit
)
)
That being said, I think it is worth considering adding to our format options. Adding @Prince for review.