I have a data set that has Farmer name in column A, Fruit in column B and Ready? in column C. I want to copy and paste the farmer's name based on the fruit they plant onto their designated sheet (for example, APPLE under the sheet named APPLE), but I only want they want has yea under the Ready? column.
I was wondering if anyone tell me what is the best way to do this in VBA that creates the new sheet and copy and paste the criteria that I described above.
I am very new to VBA and writing this on my own is total out of my league.
[TABLE="width: 192"]
<colgroup><col width="64" span="3" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"]Farmer [/TD]
[TD="width: 64"]Fruit[/TD]
[TD="width: 64"]Ready?[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]APPLE[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]APPLE[/TD]
[TD]NO [/TD]
[/TR]
[TR]
[TD]G[/TD]
[TD]APPLE[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]E[/TD]
[TD]GRAPES[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]B[/TD]
[TD]ORANGE[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]F[/TD]
[TD]ORANGE[/TD]
[TD]NO [/TD]
[/TR]
[TR]
[TD]D[/TD]
[TD]PEARS[/TD]
[TD]NO [/TD]
[/TR]
[TR]
[TD]H[/TD]
[TD]PEARS[/TD]
[TD]YES[/TD]
[/TR]
</tbody>[/TABLE]
I was wondering if anyone tell me what is the best way to do this in VBA that creates the new sheet and copy and paste the criteria that I described above.
I am very new to VBA and writing this on my own is total out of my league.
[TABLE="width: 192"]
<colgroup><col width="64" span="3" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"]Farmer [/TD]
[TD="width: 64"]Fruit[/TD]
[TD="width: 64"]Ready?[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]APPLE[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]APPLE[/TD]
[TD]NO [/TD]
[/TR]
[TR]
[TD]G[/TD]
[TD]APPLE[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]E[/TD]
[TD]GRAPES[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]B[/TD]
[TD]ORANGE[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]F[/TD]
[TD]ORANGE[/TD]
[TD]NO [/TD]
[/TR]
[TR]
[TD]D[/TD]
[TD]PEARS[/TD]
[TD]NO [/TD]
[/TR]
[TR]
[TD]H[/TD]
[TD]PEARS[/TD]
[TD]YES[/TD]
[/TR]
</tbody>[/TABLE]