Field format to money

Hello to all,
Anyone knows if is possible to show a field as money with $. Basically I use generators show generate my table to show the data and I would like to show a cell as money instead regular number.
Thanks

If it’s a table cell, then I would take the original cell (for example)

<td dmx-text="my_money_field"></td>

And in the code editor simply change to

<td dmx-text="'$' + my_money_field"></td>

Note the additional single quote marks ' surrounding the dollar sign.

Waooooo so simple, thank a lot

There’s also a currency formatter available.

I didn’t suggest this to the OP in case he was saving his amounts as a string in which case I don’t think the currency formatter would work in this case.

Thanks, but is just for show it in that specific area.