I have a column of percentages that I would like to format as a percentage (ex: 75.3545%) rather than .753545
Currently, I have a formula tool inserted and am using
ToString(Round(([column]*100),0.4))+"%"
I am getting an error message saying "Parse Error at char(0): Formula: tried to apply numeric operator to string value".
Currently, the column is being stored as "string" however I have also tried double, fixed decimal, int64, and v_string.
Is this the correct formula, and what type should the data be stored as? Does this hold true for converting data into dollars ($)?