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

I need to know how to split data in qlikview?

 
Labels (1)
1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

As suggested, Left(), Mid(), RIght(), Subfield() and several other "String Functions" (search for them in Help) can be used to split strings into substrings.

View solution in original post

4 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Can you be more specific, please? Your question is too vague, it doesn't convey the problem.

Cheers,

Hiran_Bandara
Contributor II
Contributor II
Author

KN0023D12378 = KN +0023D12378 (same like this)
BrunPierre
Partner - Master
Partner - Master

In this case, you can derive new fields using the Left() and Mid() like this;

Left(Trim(FieldName), 2) as FirstTwo
Mid(Trim(FieldName), 3) as AfterFirstTwo

Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

As suggested, Left(), Mid(), RIght(), Subfield() and several other "String Functions" (search for them in Help) can be used to split strings into substrings.