Copy whole row into different sheet if specific text found in Column.

strongman86

Board Regular
Joined
Feb 15, 2017
Messages
115
Office Version
  1. 2019
Platform
  1. Windows
Lads,
Hope you can help me. I have Table in Sheet1 consisting of 100's of rows and about 20 columns similar to below. I need formula in Sheet2 that looks through Column A Sheet1 and if it finds
APPLE IN CELL then it needs to copy whole row into Sheet2 and same for PEAR. This need to be in the order they appear in Sheet1. Thanks.


Sheet1
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]APPLE[/TD]
[TD]UK[/TD]
[TD]10[/TD]
[TD]WEEK1[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]BANANA[/TD]
[TD]SPAIN[/TD]
[TD]15[/TD]
[TD]WEEK2[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]ORANGE[/TD]
[TD]SPAIN[/TD]
[TD]20[/TD]
[TD]WEEK2[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]APPLE[/TD]
[TD]IE[/TD]
[TD]15[/TD]
[TD]WEEK1[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]LEMON[/TD]
[TD]US[/TD]
[TD]10[/TD]
[TD]WEEK3[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]PEAR[/TD]
[TD]US[/TD]
[TD]20[/TD]
[TD]WEEK5[/TD]
[/TR]
</tbody>[/TABLE]


Sheet2
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]APPLE[/TD]
[TD]UK[/TD]
[TD]10[/TD]
[TD]WEEK1[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]APPLE[/TD]
[TD]IE[/TD]
[TD]15[/TD]
[TD]WEEK1[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]PEAR[/TD]
[TD]US[/TD]
[TD]20[/TD]
[TD]WEEK5[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
in Sheet2!A1
=IFERROR(INDEX(Sheet1!$A$1:$D$6,AGGREGATE(15,6,ROW($A$1:$D$6)/((Sheet1!$A$1:$D$6="APPLE")+(Sheet1!$A$1:$D$6="PEAR")),ROWS(A$1:A1))-(1-1),COLUMN()),"")
copy down for as many rows as you have on Sheet1 and across to column D
 
Upvote 0
Thank you Special-K99
user-offline.png
:)
 
Upvote 0

Forum statistics

Threads
1,223,895
Messages
6,175,257
Members
452,625
Latest member
saadat28

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top