Hi -
Specifically, I like to have my numeric values shown without decimal places with comma separators (i.e. 11,000,000). Is there a function to format accordingly in Alteryx?
Thanks.
Solved! Go to Solution.
If a value has "," characters, it is a string field. Excel can apply these commas as a display option, but these characters can only be present in string fields in Alteryx.
If you would like values for [Field] to be "1,000,000" and not "1000000.00", use the formula in a string field:
tostring([Field],0,1)
The arguments are <Field>,<Decimal Places>,<Binary flag to add thousands commas>
Hi @jannis005
Like @CharlieS, said If a number has anything other than the decimal separator that is defined in your regional settings, it's a string. There is no way in Alteryx to change the display format of the numbers used in the workflow, like you can in excel without either converting the field to a string or losing information. In Excel you can format a group of cells with 0 decimal points and can continue working with fractional part of the number hidden but still available. The equivalent operation in Alteryx is to change the field type to fixed decimal with size 19.0. Doing this rounds the fractional part which is then lost. You can see this by changing a double to fixed decimal and then back to a double.
This isn't to say that you can't format values for output or for display in reports. You just can't within the workflow itself.
Dan
Thanks - I think the reporting tool should be sufficient for formatting purposes.