Hello again, I believe so,
<font face=Courier New><SPAN style="color:darkblue">Sub</SPAN> SrchBk()
<SPAN style="color:darkblue">Dim</SPAN> ws <SPAN style="color:darkblue">As</SPAN> Worksheet, myVar <SPAN style="color:darkblue">As</SPAN> <SPAN style="color:darkblue">String</SPAN>, val1 <SPAN style="color:darkblue">As</SPAN> Range
<SPAN style="color:darkblue">Dim</SPAN> val2 <SPAN style="color:darkblue">As</SPAN> Range, tmp <SPAN style="color:darkblue">As</SPAN> Range, cnt <SPAN style="color:darkblue">As</SPAN> <SPAN style="color:darkblue">Long</SPAN>
myVar = InputBox("Please Enter a Search Term.")
<SPAN style="color:darkblue">If</SPAN> myVar = vbNullString <SPAN style="color:darkblue">Then</SPAN> <SPAN style="color:darkblue">Exit</SPAN> <SPAN style="color:darkblue">Sub</SPAN>
<SPAN style="color:darkblue">For</SPAN> <SPAN style="color:darkblue">Each</SPAN> ws <SPAN style="color:darkblue">In</SPAN> Worksheets([transpose(row(1:12))])
<SPAN style="color:darkblue">Set</SPAN> val1 = ws.Cells.Find(What:=myVar, LookIn:=xlValues, _
lookat:=xlPart, MatchCase:=False)
<SPAN style="color:darkblue">If</SPAN> <SPAN style="color:darkblue">Not</SPAN> val1 <SPAN style="color:darkblue">Is</SPAN> <SPAN style="color:darkblue">Nothing</SPAN> <SPAN style="color:darkblue">Then</SPAN>
cnt = cnt + 1
Application.Goto val1
<SPAN style="color:darkblue">Set</SPAN> tmp = val1
again:
<SPAN style="color:darkblue">If</SPAN> MsgBox("Seach Again?", 4) = vbNo <SPAN style="color:darkblue">Then</SPAN> <SPAN style="color:darkblue">Exit</SPAN> <SPAN style="color:darkblue">Sub</SPAN>
<SPAN style="color:darkblue">Set</SPAN> val2 = ws.Cells.FindNext(After:=val1)
<SPAN style="color:darkblue">If</SPAN> val1.Address <> val2.Address And _
tmp.Address <> val2.Address <SPAN style="color:darkblue">Then</SPAN>
Application.Goto val2
<SPAN style="color:darkblue">Set</SPAN> val1 = val2
<SPAN style="color:darkblue">GoTo</SPAN> again
<SPAN style="color:darkblue">End</SPAN> <SPAN style="color:darkblue">If</SPAN>
<SPAN style="color:darkblue">End</SPAN> <SPAN style="color:darkblue">If</SPAN>
<SPAN style="color:darkblue">Next</SPAN> ws
<SPAN style="color:darkblue">If</SPAN> <SPAN style="color:darkblue">Not</SPAN> <SPAN style="color:darkblue">CBool</SPAN>(cnt) <SPAN style="color:darkblue">Then</SPAN> MsgBox "No Matches Found"
<SPAN style="color:darkblue">End</SPAN> <SPAN style="color:darkblue">Sub</SPAN></FONT>