Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,Experts.
My extracted table data having more functions in one excel cell.I want split the values into different rows. Iam attached a table.
In my data one of the column is Group.The Group column is one of the sheet(i,e.LH Driver Safety Scorecard) of attached data.please give me a suggestion.
Thanks in advance.
Try this function:
Example:
Load *, SubField(Group,'___') as NewField;
LOAD * INLINE
[
Group
NYALA___TC-993684___PC-ZM10000, NYALA EMAIL
]
Try this function:
Example:
Load *, SubField(Group,'___') as NewField;
LOAD * INLINE
[
Group
NYALA___TC-993684___PC-ZM10000, NYALA EMAIL
]
Hi,Quy Nguyen.Thank you giving good suggestion.
IAm using same expression. Its possible only one row value to splitting purpose.When i execute the data is combining with ',' & '__'.So i want split hole data of group column and the data spit & the split data should be separate row.So please give another suggestion.
Thanks.
Hi,
Just replace the ',' by '___'
Load *, RowNo(), SubField(Replace(Group,',','___'),'___') as NewField;
LOAD * INLINE
[
Group
'NYALA___TC-993684___PC-ZM10000, NYALA EMAIL'
'SATWANT___TC-944083___PC-ZM10000, SATWANT EMAIL'
'STALLION MOTORS___TC-943658___PC-ZM10010'
'TOOL OF TRADE'
];
Its working.
Thanks for give good suggestion.
Glad it helped. If your question has been answered with your satisfaction, please mark the appropriate reply as correct/helpful.