Hi I have a problem removing the parenthesis in an amount field, I want to replaced it into negative sign.
For example:
then I want to have it as "-500'
Can you help me with this one please?
Hi @dunkindonut7777
Here is a workflow for the task.
Output:
Formula:
"-"+Trim([Functional Amount],"()")
Hope this helps 🙂
If this post helps you please mark it as solution. And give a like if you dont mind 😀👍
Hi thank you for this one. I just got a problem with the positive numbers, they were replaced as negative also, how to convert it without touching the positive numbers?
I have added a condition to handle this.
IIF(Contains([Functional Amount], "("), "-"+Trim([Functional Amount],"()"), [Functional Amount])
@dunkindonut7777
How about a simple Find and Replace?
Hey @dunkindonut7777 !
Another easy solution for you is to use the formula tool with 2 simple replaces like in the print.
Hope that help you!