I am running into a "Run Time Error 1004 Application-Defined or Object-Defined Error" on the following line of code and cannot figure out why my macro is crashing (It works fine on another computer).

 Dim TeamCell As Range
    Set TeamCell = Cells.Find(What:="Team", After:=ActiveCell, LookIn:=xlFormulas2, _
        LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False)
Any idea why this might not work in Excel 2019?