Page 1 of 1

Pick List

Posted: Wed May 15, 2013 12:23 pm
by Auvi
I have defined picklists (numeric output static:1,1343:1,08) for two elements in a dimension. The problem i am facing is that , the comma (for example between 1 and 1343) don´t delivered. What is the problem?
Thank you in anticipation!

Re: Pick List

Posted: Wed May 15, 2013 12:30 pm
by declanr
Auvi wrote:I have defined picklists (numeric output static:1,1343:1,08) for two elements in a dimension. The problem i am facing is that , the comma (for example between 1 and 1343) don´t delivered. What is the problem?
Thank you in anticipation!
Can't say I have played much with picklists and decimal places but I wonder if its to do with the fact that although you are formatting your numbers with the euro style

Code: Select all

,
for a decimal and

Code: Select all

.
for a thousand separator... the backbones of the system will still probably be recording it as 1,000.00 instead of 1.000,00 so perhaps try and input this for your picklist:

Code: Select all

static:1.1343:1.08

Re: Pick List

Posted: Wed May 15, 2013 12:39 pm
by Auvi
Wow, thank you for your fast and right answer.