I am getting a 424 runtime error, object required, but I copied my code directly from the homework that was given to us, where the worked. I just changed the range names, which I have triple checked for spelling mistakes and I know for a fact that they exist. Does anyone know why I keep getting an object error?
Private Sub Worksheet_Activate()
wsSheet3.Range("hello").Value = 12
wsSheet3.Range("world").Value = 30
End Sub
Option Explicit! <- a good start to identifying non-existent variables and typos. - AJD