Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: 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

In Load string try with

Load

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

From Source......

View solution in original post

2 Replies
its_anandrjs

In Load string try with

Load

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

From Source......

Anonymous
Not applicable
Author

Thanks man!