Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Assuming I am unable to manipulate the data within Qlik, say if I got a row of data, but if there is a delimiter ";", split and create a new row as shown above?
Is this possible and what is the easiest way to do so?
is this you are looking at?
Source_Data:
Load * Inline [
Group_Id,Items
1,"Peter;Aron"
2,"Ram;Shiv"
];
NoConcatenate
LOAD
Group_Id,
SubField(Items,';') as Items
Resident Source_Data;
Drop Table Source_Data;
is this you are looking at?
Source_Data:
Load * Inline [
Group_Id,Items
1,"Peter;Aron"
2,"Ram;Shiv"
];
NoConcatenate
LOAD
Group_Id,
SubField(Items,';') as Items
Resident Source_Data;
Drop Table Source_Data;
Hi
Try like this
Load SubField(Name,';') as Name, Attendee? Inline
[
Name, Attendee?
Tom, Y
John, Y
Peter;Aaron, N
];
Hi,
Load
SUBFIELD(Name,';') AS Name,
[Attendee?]
FROM .....;
Thank you. This is what I was looking for.