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 calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,826
Messages
6,121,797
Members
449,048
Latest member
greyangel23

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