Paste Filtered Sheet

sugargenius

New Member
Joined
Sep 16, 2009
Messages
40
I have a sheet of rates. Column A is the rate. Column B is the effective date. Supposed I wanted to escalation the rates for 2020 by 5%. My first approach would be to filter the date column for 2020 and then enter a formula in column C like, =A2*1.05. Then I would copy column C and paste values in Column A. However, when I attempt this exact approach, the paste doesn't work. The paste seems to ignore the filter and affect rows that are outside the filter condition.

Is there a way to get paste to work in a filtered sheet?
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try this for the paste
Code:
Sub CopyValues()
   Dim Rng As Range
   For Each Rng In Range("C:C").SpecialCells(xlVisible).Areas
      Rng.Offset(, -2).Value = Rng.Value
   Next Rng
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,257
Members
449,075
Latest member
staticfluids

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