Flip sign from positive to negative without using *-1

I am trying to flip the sign of a period account to negative without using *-1. That way we can click into the value on the reconciliation to see all the accounts that make up a given value. If you use *-1 it will grey out the number and you cannot see the accounts that make it up.

Is there a way to do this?

Thank you,
Tom

Hi @tdcurrie,

there is a way, but we haven’t yet released this yet as the account modal drop isn’t active yet for all our customers.

If you add ,invert:true to the currency filter, it’ll work. So something like:

{{ some_value | currency,invert:true }}

Ah that makes sense I remember hearing that it was still in the works.

Looks good the solution worked for me.

Thank you!