
For those that are interested, I finally got this macro to work. This is a handy little macro and may be beneficial to those that search for specific words in a column or row.
Do
Cells.Find(What:="TODAY", After:=ActiveCell, LookIn:=xlValues, LookAt:= _
xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
ActiveCell.Offset(0, -1).Activate
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
ActiveCell.Offset(0, 1).Activate
Selection.ClearContents
On Error GoTo ErrorHandler:
Loop
'ERRORHANDLER NEEDED TO PREVENT ERROR MESSAGE DURING SEARCH FOR "TODAY"
ErrorHandler:
Range("H2000").Select
ActiveCell.FormulaR1C1 = "TODAY" 'PLACES ANOTHER TODAY AT CELL H2000 TO PREVENT ERROR DURING MULTIPLE SAVES ON SAME DAY
Range("A6").Select
ActiveSheet.Protect
Bookmarks