I have excel data like this :
Each Cell has 2 lines, 1st line is the message and second line the time, The format in which I need the data is :
Basically I need to bifurcate the message and time in 2 different columns.
Kindly suggest
I have excel data like this :
Each Cell has 2 lines, 1st line is the message and second line the time, The format in which I need the data is :
Basically I need to bifurcate the message and time in 2 different columns.
Kindly suggest
HI,
Hope the following sample helps you.
dt = dt.AsEnumerable.Select(Function(r) dt.Clone.LoadDataRow(r(0).ToString.Split(vbCrLf.ToCharArray,StringSplitOptions.RemoveEmptyEntries),False)).CopyToDataTable
ample20230317-5L.zip (8.3 KB)
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.