jhutchings
Member
- Joined
- Feb 7, 2014
- Messages
- 11
- Programming Experience
- 1-3
I am not sure quite how to begin programming a solution to this problem. I need to take an excel file that has the following headers...
ID1, NAME, ID2, PCPNAME
there are multiple records that have the same ID2.
I need to combine those records so that it would go ID1|ID1, NAME, ID2, PCPNAME
Would my best bet be to import into a dataset and sort on ID2, then when I read the next line, if ID2 doesnt match the previous ID2 then I know I need to create a new record?
Thank you in advance for your help!
ID1, NAME, ID2, PCPNAME
there are multiple records that have the same ID2.
I need to combine those records so that it would go ID1|ID1, NAME, ID2, PCPNAME
Would my best bet be to import into a dataset and sort on ID2, then when I read the next line, if ID2 doesnt match the previous ID2 then I know I need to create a new record?
Thank you in advance for your help!