Hi All,
I'm having trouble with using FIND and I've finally given up. I just know this will be easy for most everyone else but not me.
The code
Sub Find_Cell_In_Menu()
Dim s As String
Dim rng As Range
Worksheets("Menu").Activate
s = Range("M3") ' Example of M3 value = 9008228
Set rng = Sheet1.Columns("B:B").Find(What:=s).Select
End Sub
I have had an aberration of the above which worked one day but not the next. I then read that somehow the search value can change by not clearing some value etc.
I didn't save the version that worked for a short time thinking I can tweak the code and fix it but NO I didn't fix it. Currently I'm getting 'Object Required' Error and haven't been able to fix the Error.
Basically it retrieves the s Value then attempts to have the ActiveCell land on the s Value located in Column B.
Can somebody please help this poor 75 year old from going crazy
Thank you one and all..
'
I'm having trouble with using FIND and I've finally given up. I just know this will be easy for most everyone else but not me.
The code
Sub Find_Cell_In_Menu()
Dim s As String
Dim rng As Range
Worksheets("Menu").Activate
s = Range("M3") ' Example of M3 value = 9008228
Set rng = Sheet1.Columns("B:B").Find(What:=s).Select
End Sub
I have had an aberration of the above which worked one day but not the next. I then read that somehow the search value can change by not clearing some value etc.
I didn't save the version that worked for a short time thinking I can tweak the code and fix it but NO I didn't fix it. Currently I'm getting 'Object Required' Error and haven't been able to fix the Error.
Basically it retrieves the s Value then attempts to have the ActiveCell land on the s Value located in Column B.
Can somebody please help this poor 75 year old from going crazy
Thank you one and all..
'