Hi Asgeir,
Are all of your users in the same region and expecting the same format?
If so you can alter your query to do the formatting there.
Its a bit easier with MS SQL where you can just use the Format function like:
format ( [MyColumn], 'N', 'de-DE' ) MyColumnName
But I believe in Oracle you can get around it with something like:
to_char ( MyColumn, '999G999G990D00', 'NLS_NUMERIC_CHARACTERS = '',.''') MyColumnName
I don't believe there is anything you can do to get Numerics to appear right-aligned in this one (happy to be proven wrong on that though) and if that's the case it doesn't really matter if you are formatting as a text instead of a numeric - when the user downloads to a CSV - Excel can do its thing anyway.
Thanks,
Declan
------------------------------
Declan Rodger
Technical Director
Spitfire Analytics
------------------------------