Skip to main content

New to Qlik Sense

If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

Split the field

HI all,

 

I have data like this below 

Pdt mismact errod
1 M01M02M03MO4

 

I want to get the data as below while loading

Required O/P

Pdt mismact errod
1 M01
1 M02
1 M03
1 M04

 

Any help much thanks to you

Labels (2)
1 Solution

Accepted Solutions
Anil_Babu_Samineni

Simplest way 

LOAD Pdt, SubField(Trim(Replace([mismact errod], 'M', ' M')), ' ') as [mismact errod]Inline [
Pdt, mismact errod
1, M01M02M03M04
];

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)

View solution in original post

1 Reply
Anil_Babu_Samineni

Simplest way 

LOAD Pdt, SubField(Trim(Replace([mismact errod], 'M', ' M')), ' ') as [mismact errod]Inline [
Pdt, mismact errod
1, M01M02M03M04
];

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)