Hi All,
I have below Main DT= DT_Main
Name, Place, Phone
Rox, US, 1234567890
Elon, UK, 2345678901
Name, Place, Phone
Raj, India, 3456789012
Rohan, India, 4567890123
Name, Place, Phone
Adam, USA, 5678901234
I want output as List (of DataTable)= ListDT
Condition: Get 1st DT as Name to Next Name Data
Example: ListDT(0)
Name, Place, Phone
Rox, US, 1234567890
Elon, UK, 2345678901
Then, ListDT(1)
Name, Place, Phone
Raj, India, 3456789012
Rohan, India, 4567890123
Then, ListData(2)
Name, Place, Phone
Adam, USA, 5678901234
One More thing, Column Name is not fixed. Its dynamic.
It may be FullName, Name, OwnerName so its not fixed.
It’ll be helpful, If I can achieve this by using linq.
@rlgandu @Nawazish_Ahmad @Anil_G @ppr @mkankatala @Shiva_Nikhil @Parvathy
Thanks in Advance