Hello, is it possible to right justify a column wi...
# general
p
Hello, is it possible to right justify a column with saved search results? I am trying to have a currency value show as $ 5,000
a
@Phillip You can use:
'<p align="left">$</p>'||' ' ||'<p align="right">'||{number}||'</p>'
results look like attached image. I am certain there is a better way to handle it. Just needs to be fine tuned.
'<table align="right"><tr><td align="left">$</td><td align="right">'||{amount}||'</td></tr></table>'
p
thank you