Autcopy selected details to another worksheet, without blank rows between items

Michael Jones

New Member
Joined
Jul 15, 2014
Messages
19
I have data as in the example below:


Investment
Value
Advice required?
Barclays
£100,000.00
Yes
Ist National
£50,000.00
No
Buy-to-Let Property
£325,000.00
Yes
Sky TV Shares
£1,000.00
Yes
ING Investment Bond
£50,000.00
No
ICI Shares
£30,000.00
No
MG Investment Bond
£30,000.00
Yes
Prudential Savings Bond 1
£30,000.00
No
Prudential Bond 2
£100,000.00
Yes
Total
£716,000.00

<tbody>
</tbody>

Where the answer in column C has been answered "Yes" I want to have this autocopied to another worksheet to produce the following, without any blank rows:


Investment
Value
Advice required?
Barclays
£100,000.00
Yes
Ist National
£50,000.00
No
Buy-to-Let Property
£325,000.00
Yes
Sky TV Shares
£1,000.00
Yes
ING Investment Bond
£50,000.00
No
ICI Shares
£30,000.00
No
MG Investment Bond
£30,000.00
Yes
Prudential Savings Bond 1
£30,000.00
No
Prudential Bond 2
£100,000.00
Yes
Total
£716,000.00

<tbody>
</tbody>

Can anyone solve my problem? Many thanks in advance

Kind regards

Michael
 
Last edited:

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Array enter this and copy across and down:

Code:
[TABLE="width: 64"]
<tbody>[TR]
  [TD="width: 64"]=IFERROR(INDEX($A$2:$C$1000,SMALL(IF($C$2:$C$1000="Yes",ROW($C$2:$C$1000)-1),ROW($A1)),COLUMN(A$1)),"")[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0

Forum statistics

Threads
1,214,892
Messages
6,122,112
Members
449,066
Latest member
Andyg666

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