Macro with 1004 error

Michael M

Well-known Member
Joined
Oct 27, 2005
Messages
21,821
Office Version
  1. 365
  2. 2019
  3. 2013
  4. 2007
Platform
  1. Windows
Hi All
This Macro falls over at the Sheets("Summary").Range("A" & lrow + 1).Select line

Can someone tell me why.
Regards
Michael M


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim lrow As Long
lrow = Worksheets("Summary").Cells(Rows.Count, "A").End(xlUp).Row
Sheets("Sales Consultant Worksheet").Activate
If ActiveCell.Value = "Y" Then
Sheets("Summary").Range("A" & lrow + 1).Select
End If
End Sub
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
You need to "Activate" the sheet before you select the range object
Change to
Code:
Sheets("Summary").Select
Sheets("Summary").Range("A" & lrow + 1).Select
or just
Code:
Application.GoTo Sheets("Summary").Range("A" & lrow+1)
 
Upvote 0
Hi Jindon
Excellent, it works fine.

Thanks for your prompt and, as always, informative response
Regards
Michael M
 
Upvote 0

Forum statistics

Threads
1,213,484
Messages
6,113,920
Members
448,533
Latest member
thietbibeboiwasaco

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