Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Comma Instead of Point ?


Hi All;

I have a fied below that name is 'Value'

I would like to show data such as 15,52 instead of 15.52

So i would like to show comma(,) instead of point(.)

Value
15.52
15.53
15.55
15.62
15.64
15.66
15.74
15.82
15.85


Thanks in advance...

1 Solution

Accepted Solutions
Not applicable
Author

To be correct


Replace(Value,'.',',');


View solution in original post

6 Replies
kji
Employee
Employee

Change the number format for the field/listbox and give , as your decimal separator.

Not applicable
Author

it does not work anyway.

Any idea ?

Not applicable
Author

Use replace it will work. Search with replace in forum you will see number of examples

Not applicable
Author

To be correct


Replace(Value,'.',',');


Miguel_Angel_Baeyens

Hi,

Depending on what you want to do in your document, you may need to change this variable in the main tab yof your script

SET DecimalSep='.'; // . instead of ,


You can use replace as well, but it may not work if you are going to say sum those values

LOAD Replace(value, ',', '.') as value FROM...


Hope that helps

Not applicable
Author


I use replace function and it works...


Thanks.