Dynamic Currencies and Negative Numbers

In my app, I allow a user to choose their currency symbol. It uses an option list and saves the selection to the user’s data.

Screen Shot 2021-12-10 at 10.56.44 AM

Screen Shot 2021-12-10 at 10.57.08 AM

It works great, however I am having trouble with negative numbers. The minus (-) sign shows after the currency symbol. Any ideas on how I could have it appear before the currency symbol?

Screen Shot 2021-12-10 at 10.57.36 AM

I should also note that negative numbers are important to my app. It’s a digital checkbook register and expenses subtract from overall account balance.

Add a condition to the text element,
If the Parent groups transaction amount < 0
Change text to
-Current users currency symbol display
Parent groups transaction amount*-1: formatted as…

Perfect! Thank you so much

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.