lizsunnysideup
New Member
- Joined
- Jun 29, 2019
- Messages
- 36
Hello. Is there a way to paste down a column into empty blank cells which has been filtered? Here's what I have so far, I've gotten to copying and pasting the last active cell in A, but need to move once cell down and paste the data mirroring the last used row in cell V. Column V always has data, however my task is to fill in the blanks in column A. This is what I have so far.
Code:
Sub Macro2()
Rows("1:1").Select
Selection.AutoFilter
ActiveSheet.Range("V:V").AutoFilter Field:=22, Criteria1:= _
"REFILL TOO SOON:DISPENSED TOO SOON"
Range("A1").Select
Selection.End(xlDown).Select
Selection.Copy
End Sub