Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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!