<< currency << | Table Of Contents | >> dailymax >> |
Keyword | currencyformat |
Purpose | These values specify the default format used for all currency values. |
|
Syntax | currencyformat <negativeprefix> <negativesuffix> <thousandsep> <fractionsep> <fractiondigits> |
|
Arguments | negativeprefix [STRING] | Prefix for negative numbers |
negativesuffix [STRING] | Suffix for negative numbers |
|
thousandsep [STRING] | Separator used for every 3rd digit |
|
fractionsep [STRING] | Separator used to separate the fraction digits |
|
fractiondigits [INTEGER] | Number of fraction digits to show |
|
Context | project, resourcereport, taskreport, textreport, tracereport, accountreport |
project prj "Project" "1.0" 2007-01-01 - 2007-03-01 { timezone "Europe/Berlin" # German currency format: e. g. -10.000,20 5.014,11 currencyformat "-" "" "." "," 2 # US currency format: e. g. (10,000.20) 5,014.11 currencyformat "(" ")" "," "." 2 } task t "Task" { start ${projectstart} milestone }
<< currency << | Table Of Contents | >> dailymax >> |