Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Change commas to decimals and remove extra spaces in field

Hi I have a column in a excel spreadsheet that has number like these below:

0.96.0.1.2

10, 00, 9061, 89

12, 32, 11282, 0

11.20.8231.9

10, 21, 89347, 0

11.2 HR8

11.2.12459.0

NULL

How can I get rid of the extra spaces and replace the commas with decimals? The correct output should be display like below:

0.96.0.1.2

10.00.9061.89

12.32.11282.0

11.20.8231.9

10.21.89347.0

11.2 HR8

11.2.12459.0

NULL

1 Solution

Accepted Solutions
sunny_talwar

This can be done from your actual source like this....

LOAD ListOfFields,

          Number,

          Replace(Test,', ','.') as NewNumber

FROM Source....

View solution in original post

5 Replies
trdandamudi
Master II
Master II

Please see the attached and hope this helps...

Replace.jpg

swuehl
MVP
MVP

Maybe just use Replace() function:

LOAD *,

  Replace(Test,', ','.') as Test2

INLINE [

Test

"0.96.0.1.2"

"10, 00, 9061, 89"

"12, 32, 11282, 0"

"1.20.8231.9"

"10, 21, 89347, 0"

"11.2 HR8"

"11.2.12459.0"

"NULL"

];

Not applicable
Author

The column, Versions, has more numbers listed. The numbers I listed in my original post was just some of them. How do I change all of them? Would I have to type each number out in the Inline bracket?

sunny_talwar

This can be done from your actual source like this....

LOAD ListOfFields,

          Number,

          Replace(Test,', ','.') as NewNumber

FROM Source....

swuehl
MVP
MVP

Right, the INLINE table is only used for demonstration, just use the Replace() function in your LOAD statement that you are using to load your table from source.