How to paste data over hidden cells by a filter

axel_jorje

New Member
Joined
Dec 22, 2013
Messages
1
Hi,
Could you please help me with a hint for my problem or maybe you can make a tutorial with it. How to paste some data over hidden cells by a filter
So i have one table with 3 columns A,B and C and 10 rows. In column A i have Name, in column B i have AWB and in column C Total. In column C i need to fill some data. In column A , I have 2 names, 5 rows with Alex and 5 with George. In the AWB I have some random numbers. I've filtered column A by Alex. Now i should copy some data in C column only for those 5 rows with Alex, but when I paste it, data goes over the hidden cells by the filter.
How can i solve this so data can be filled when I paste it only on that selected rows?
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hi

When you want to copy only some data after filtering your list you need to sort it before as kadri1234 says.

We need one after the other, Alex in your example, that's why we need to sort the list before copy/paste.

If you don't want to change the sort of your list you can get what you want with a formula which will work as a filter.

Name = A1 in the table shown below.

NameAWBTotal AlexTotal George
Alex1010
George2525
Alex1010
Alex2525
George3030
George3030
Alex2222
Alex4040
George3434
George2020

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>


formula in C2 = IF(A2="Alex";B2;"") -- Copy it down and you'll get the total amount only for Alex
formula in D2 = IF(A2="George";B2;"") idem for George

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,553
Messages
6,125,483
Members
449,233
Latest member
Deardevil

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