Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Number format decimal seperator and thousand seperator

Hi all,

In my document I use this default settings:

SET ThousandSep: '.';

SET DecimalSep: ',';

I need this settings for the data I load into this document.

Right now I need to add a table file (html) which have numbers in it with a different ThousandSep (',') and a different DecimalSep ('.'). Is there a way to transform this settings when loading the data in a table?

Kind regards,

Henco

1 Solution

Accepted Solutions
maxgro
MVP
MVP

did you try with ?

Num#( Field, '#', '.', ',') as NewField

View solution in original post

4 Replies
Not applicable
Author

Try to change the number format of Fields of the table file (html)...

maxgro
MVP
MVP

did you try with ?

Num#( Field, '#', '.', ',') as NewField

Sokkorn
Master
Master

Hi Henco,

Here is sample:

Load

     Num(PurgeChar(FieldName,'.,' )) As Field,

     ...

From...

Regards,

Sokkorn

Anonymous
Not applicable
Author

Thanks, that helps me out.

Kind regards,

Henco