Hello All,
Newbie here so take it easy!
I have a lengthy list of data (~500 lines) that has 2 columns with where names appear multiple times if the person has more than one sector of access. I would like to segment my data into rows. See below for an example. Thanks in advance...
<tbody>
</tbody>
Newbie here so take it easy!
I have a lengthy list of data (~500 lines) that has 2 columns with where names appear multiple times if the person has more than one sector of access. I would like to segment my data into rows. See below for an example. Thanks in advance...
COLUMN A | COLUMN B | COLUMN C | COLUMN D | COLUMN E | COLUMN F | |
Existing Format | ||||||
Name | ID# | Access | ||||
John Smith | 3 | HQ | ||||
Jane Doe | 21 | HQ | ||||
Jane Doe | 21 | ISC | ||||
Jane Doe | 21 | Finance | ||||
Mike Thomas | 34 | Finance | ||||
Mike Thomas | 34 | ISC | ||||
John James | 7 | ISC | ||||
Sam Smith | 12 | Finance | ||||
Preferred Format | ||||||
Name | ID# | Access1 | Access2 | Access3 | Access4 | |
John Smith | 3 | HQ | ||||
Jane Doe | 21 | HQ | ISC | Finance | ||
Mike Thomas | 34 | Finance | ISC | |||
Sam Smith | 12 | Finance | ||||
John James | 7 | ISC | ||||
<tbody>
</tbody>