Well it's like this....
The Parmater is
SERIE_DATA_1=12345|12345|12345|12345|etc...
Now, as long as I enter integers everything is fine, but when I try to enter numbers that are formated such as 12,345 it only shows the number up untill the comma, so 12,345 would come out as 12.
So supposedly there is a way to format the number indirectly with another parmater
SERIE_FORMAT=Theformat
This supposedly accepts a sprtinf() string that will format the affor mentioned numbers the way you want them to look.
An example that I was given was
SERIE_FORMAT=%0.1f
So I need to work out a format that will make integer numbers formated like currency (With or without the "$" sign) , but atleast have the commas.