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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading a numeric value with decimal point instead of comma

Hi how would I load a field containing numeric values in the form 00.00 as opposed to how it currently stands ie 00,00 ?

Thanks

3 Replies
sunny_talwar

May be change these setting around:

SET ThousandSep='.';

SET DecimalSep=',';


Capture.PNG

jonathandienst
Partner - Champion III
Partner - Champion III

If you don't want to change the default values for the decimal and thousands separators, load the value like this:

    ...

     Num(Num#(myField, '#.##0,00', ',', '.')) As myField,

     ...

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Thanks Sunny - It works, however I should mention I only want to change it for this particular field ? I dont want it to affect what I currently have in other fields