Copy and paste into separate sheet

eviehc123

New Member
Joined
Jan 21, 2019
Messages
32
Hi all,

Can someone help with my code below? I cannot work out why it's not working? The line in bold is highlighted by the debugger.

Rich (BB code):
Sub Macro10()
'
' Macro10 Macro
'


'
    Dim myValue As Variant
    myValue = InputBox("Enter the confirmed start date below", "Start Date Confirmation")
    Range("I18").Value = myValue
    Range("I18").Copy
    Sheets("HR Advice & Admin").Select
    FilterString = Sheets("Menu").Range("I17").Value
    ActiveSheet.Range("$A$1:$AS$286").AutoFilter Field:=1, Criteria1:=FilterString
    Range("N2:N" & Cells(Rows.Count, "N").End(xlUp).Row).SpecialCells(xlCellTypeVisible).Paste
    Sheets("Menu").Select
    Range("I17") = ""
    Range("I18") = ""
    MsgBox "Complete"
    Application.CutCopyMode = False
    .AutoFilterMode = False
End Sub

Thanks!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Try with

Range("N2:N" & Range("N" & Rows.Count)).End(xlUp).Row).SpecialCells(xlCellTypeVisible).Paste
 
Upvote 0
It needs to be
Code:
.PasteSpecial xlPasteValues
not Paste
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,639
Members
449,093
Latest member
Ahmad123098

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