Copying filtered data from one Worksheet1 and past it to another Worksheet2 and update it.

Yeft

New Member
Joined
Jan 6, 2023
Messages
19
Office Version
  1. 365
Platform
  1. Windows
Hello There!. Any one who can help me with a code for my request?. Ièm just a begginer with VBA and I'm struggling with it.
The key point is that after pasting the filtered data e.g. filtered by "SALE" . and the Sheet2 should automatically refresh by just selecting the Worksheet tab.
Any help would be greatly appreciated.

1714583692171.png
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
If you add the following code intot he Microsofe Excel Objects Sheet that you want to affect it will show all data when you activate it.
VBA Code:
Private Sub Worksheet_Activate()
    If ActiveSheet.AutoFilterMode Then
        ActiveSheet.ShowAllData
    End If
End Sub
 
Upvote 0
Hello Dermie_72

I may have not explain well. I want to capture any filtered data e.g.: "SALE" and copy all respective data, and paste it into the Worksheet2
and any time I check this worksheet , just by clicking on it it should update that filtered data, which is continuously changing.
Would you be able to write the whole Macro?
Thanks
 
Upvote 0

Forum statistics

Threads
1,216,073
Messages
6,128,645
Members
449,461
Latest member
kokoanutt

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