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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Extract data after a "."

I have information as follows:

12.1234

12.1111

12.33445

12.13344

I need to get the numbers after the dots in each transaction. How can I do that in the load script?

Please help.

Thanks,
Amit

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

In Load string try with

Load

Trim(SubField(StrCol,'.',-1)) as NewStringColumn

From Source......

View solution in original post

2 Replies
its_anandrjs
Champion III
Champion III

In Load string try with

Load

Trim(SubField(StrCol,'.',-1)) as NewStringColumn

From Source......

Anonymous
Not applicable
Author

Thanks man!