formfields
Joined: 01 Aug 2005 Posts: 465
|
Posted: Mon Dec 19, 2005 5:13 pm Post subject: How Do I Format a Currency Amount? |
|
|
Let's say you have a database attribute called "cost." You can use something like the following in a TableHelpers query:
| Code: |
SELECT CONCAT('$', cost) FROM mytable
|
|
|