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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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?

 
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 II
Partner - Master II

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.