Yeah I am doing some research to handle such
Worksheets("Sheet3").Activate
Cells.Find(What:="Total " & Sheet1.Cells(2, 2).Text, After:=Sheet3.Cells(1, 1), LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
ActiveCell.Offset(0, 20).Range("A1").Select
Selection.Copy
Worksheets("Sheet1").Activate
Sheet1.Cells(6, 2).Activate
ActiveCell.PasteSpecial (xlPasteValues)
Is there a value If Find returns an error than I can input a 0 into that field? Since there is no value to begin with I just want it to return 0. Sounds like a If then statement.
Bookmarks