Hi all,
I need some help figuring out how to pick up data from one tab within an excel workbook and transposing some of that data onto another tab.
Basically, I have a list of names, addresses, and monetary values with a drop down list of answers (yes or no). If the answer is yes I want specific data from that row to copy over to another sheet.
I've done my best to illustrate the data below.
Workbook #1
[TABLE="width: 500"]
<tbody>[TR]
[TD]Row #[/TD]
[TD]Name[/TD]
[TD]Value of contribution[/TD]
[TD]Is this contribution from a fundraising event? (yes or no)[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Charlie[/TD]
[TD]$200[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Sam[/TD]
[TD]$27[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]John[/TD]
[TD]$1,000[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Christina[/TD]
[TD]$300[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Helen[/TD]
[TD]$100[/TD]
[TD]No[/TD]
[/TR]
</tbody>[/TABLE]
Workbook #2 (Data I want to extract)
[TABLE="width: 500"]
<tbody>[TR]
[TD]Row #[/TD]
[TD]Value of contribution[/TD]
[TD]Answer [/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]$200[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]$300[/TD]
[TD]Yes[/TD]
[/TR]
</tbody>[/TABLE]
I want the second workbook to eliminate any "no" rows and only populate "yes" rows.
How do I do this?
Please help.
I need some help figuring out how to pick up data from one tab within an excel workbook and transposing some of that data onto another tab.
Basically, I have a list of names, addresses, and monetary values with a drop down list of answers (yes or no). If the answer is yes I want specific data from that row to copy over to another sheet.
I've done my best to illustrate the data below.
Workbook #1
[TABLE="width: 500"]
<tbody>[TR]
[TD]Row #[/TD]
[TD]Name[/TD]
[TD]Value of contribution[/TD]
[TD]Is this contribution from a fundraising event? (yes or no)[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Charlie[/TD]
[TD]$200[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Sam[/TD]
[TD]$27[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]John[/TD]
[TD]$1,000[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Christina[/TD]
[TD]$300[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Helen[/TD]
[TD]$100[/TD]
[TD]No[/TD]
[/TR]
</tbody>[/TABLE]
Workbook #2 (Data I want to extract)
[TABLE="width: 500"]
<tbody>[TR]
[TD]Row #[/TD]
[TD]Value of contribution[/TD]
[TD]Answer [/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]$200[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]$300[/TD]
[TD]Yes[/TD]
[/TR]
</tbody>[/TABLE]
I want the second workbook to eliminate any "no" rows and only populate "yes" rows.
How do I do this?
Please help.