I dont totally grasp the whole declaring variable part yet but I am getting an object required error on "NewLoc" in my code. I realize this is probably pretty basic but I can figure it out.
Code:
Dim myLoc As String, myRng As Range, NewLoc As String
myLoc = InputBox("Enter what you would like to search for.", "Search", "Enter Here")
Cells.Find(what:=myLoc, LookIn:=xlValues).Activate
Set myRng = ActiveCell.Offset(0, -1)
Set NewLoc = myRng.Value