I have membership data stored in a sheet and I need to extract data for some members to a second sheet.
Using vlookup I can extract the data without any problems. BUT, some members have 2 rows of data where the data is identical except the first row has a mobile phone number in column 8 and the second row has a home phone number in column 8.
How can I extract the home phone number from the second row and have it placed on the same row in the second sheet that I am extracting data to?
The second sheet will look like this:
Excel 2016 (Windows) 64 bit
<tbody>
[TD="align: center"]1[/TD]
[TD="align: center"]Member#[/TD]
[TD="align: center"]Fname[/TD]
[TD="align: center"]Surname[/TD]
[TD="align: center"]Email[/TD]
[TD="align: center"]Mobile #[/TD]
[TD="align: center"]Home Phone[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]2345[/TD]
[TD="align: center"]Bill[/TD]
[TD="align: center"]Bloogs[/TD]
[TD="align: center"]bb@xxx.com[/TD]
[TD="align: center"]0400123456[/TD]
[TD="align: center"]0312345678[/TD]
</tbody>
A modded part of the Membership sheet showing a member with 2 rows of data (Home and Mobile phone):
Excel 2016 (Windows) 64 bit
<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
[TD="align: center"]15[/TD]
[TD="align: right"]2345[/TD]
[TD="align: right"][/TD]
[TD="align: right"]3551[/TD]
[TD="align: center"]16[/TD]
[TD="align: right"]2345[/TD]
[TD="align: right"][/TD]
[TD="align: right"]3551[/TD]
[TD="align: center"]17[/TD]
[TD="align: right"]3600[/TD]
[TD="align: right"]3555[/TD]
[TD="align: right"][/TD]
[TD="align: center"]18[/TD]
[TD="align: right"]3601[/TD]
[TD="align: right"]3555[/TD]
[TD="align: right"][/TD]
</tbody>
TIA
Bob
Using vlookup I can extract the data without any problems. BUT, some members have 2 rows of data where the data is identical except the first row has a mobile phone number in column 8 and the second row has a home phone number in column 8.
How can I extract the home phone number from the second row and have it placed on the same row in the second sheet that I am extracting data to?
The second sheet will look like this:
Excel 2016 (Windows) 64 bit
A | B | C | D | E | F | |
---|---|---|---|---|---|---|
<tbody>
[TD="align: center"]1[/TD]
[TD="align: center"]Member#[/TD]
[TD="align: center"]Fname[/TD]
[TD="align: center"]Surname[/TD]
[TD="align: center"]Email[/TD]
[TD="align: center"]Mobile #[/TD]
[TD="align: center"]Home Phone[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]2345[/TD]
[TD="align: center"]Bill[/TD]
[TD="align: center"]Bloogs[/TD]
[TD="align: center"]bb@xxx.com[/TD]
[TD="align: center"]0400123456[/TD]
[TD="align: center"]0312345678[/TD]
</tbody>
Excel 2016 (Windows) 64 bit
B | C | D | E | F | G | H | I | J | K | L | |
---|---|---|---|---|---|---|---|---|---|---|---|
Bill | Bloogs | 123 First Street | Black Stump | VIC | 312345678 | Home | bb@xxx.com | ||||
Bill | Bloogs | 123 First Street | Black Stump | VIC | 400123456 | Mobile | bb@xx.com | ||||
KENNETH | xxxxxx | xxxxxxxxxxxxx | xxxxxx | xxxxxx | VIC | 423234234 | Mobile | ||||
WAYNE | xxxxxx | xxxxxxxxxxxxx | xxxxxx | xxxxxx | VIC | 434345345 | Mobile |
<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
[TD="align: center"]15[/TD]
[TD="align: right"]2345[/TD]
[TD="align: right"][/TD]
[TD="align: right"]3551[/TD]
[TD="align: center"]16[/TD]
[TD="align: right"]2345[/TD]
[TD="align: right"][/TD]
[TD="align: right"]3551[/TD]
[TD="align: center"]17[/TD]
[TD="align: right"]3600[/TD]
[TD="align: right"]3555[/TD]
[TD="align: right"][/TD]
[TD="align: center"]18[/TD]
[TD="align: right"]3601[/TD]
[TD="align: right"]3555[/TD]
[TD="align: right"][/TD]
</tbody>
TIA
Bob