How to align the amount format to right and remove the Peso sign

Hi everyone,

Can somebody help me in this, i use the get_formatted(“amount”) and the amount displays like this:

₱ 188,560.95
I want to remove the ₱ sign

Second, the amount is aligned left, i want it to align right like this:

188,560.95
    5,000.00

1,235,000.00

How to do thisin print format html?

Thank you.

Hi @EdmundDelima,

When you use get_formatted then system format according to show.

if you want to remove sign for use

{{doc.amount}}
// OR
{{row.amount}}

Set your according.

Added a style:

// example:
<p style="text-align:right;">ABC</p>

Thank You!

Hi @NCP ,
Thank you for your reply and support, I tried your suggestion but it seems not working:


and this is the result:
image
you can see that the amounts are still aligned to the left: