Hi Suzanne,
I am sorry that CODAP is not more capable in this area. Handling the comma decimal separator better has long been on our list.
You may already know this, but there is a workaround for this. It’s a bit of a hassle. You can create a new attribute that has a formula that converts the comma separators to period decimal separators. Suppose you have a column, “nums”, with numbers with comma decimal separators. You can create a new attribute, “nums1”, and attach a formula to this column like, “replaceString(nums, ‘,’, ‘.’)”. This will convert the commas to periods. If you also have period grouping in your data (like 25.000,33) things are a little more complicated. The formula would be something like this: “replaceString(replaceString(nums, ‘.’, ”), ‘,’, ‘.’)”. This removes the existing periods before changing the commas to periods.
I know this is not ideal, Susanne. We’ll see if we can move this issue up a bit on our priority list.
Jonathan