I'm trying to print out a certain row based on a column that can be anything, and I was trying to use something like this:
'Gets me the Title(Top of Column) of whatever cell was changed
If Worksheets("Testing Sheet").Range("A2").Value = "" Then
Worksheets("Testing Sheet").Range("A2").Value = Range(Target.Column & ("7")).Value
Else
Worksheets("Testing Sheet").Range("A1").End(xlDown).Offset(1, 0).Value = Range(Target.Column & ("7")).Value
End If
I thought using something similar to this would work as you see above in my code:
Range("H" & Target.Row)
which seems to work for that case, but when I try to do a specific row I get the error "Method Range of Object_Worksheet failed". Hopefully it's a very easy fix that I just don't know about