Problems with Implicit Assignment error

For years on have been using a database in which I change the fields in the database. I have been doing this on my machine that was running High Sierra.

I have a new machine with Catalina and use Pan 6 with Parallels to run Pan 6.

Now when I run this database and try the Procedure, right off the bat it stops and gets the error message:
Implicit assignment to current cell has been disabled

So how do I get this procedure to run?
Here is the code for the Procedure, does anyone see anything wrong???
Thanks.

OpenDesignSheet
Window “Change resultsFedExnamechange22:DESIGN”
InsertLine “year”
InsertBelow “par”
InsertBelow “p-t”
InsertBelow “no”
InsertBelow “tournament”
InsertBelow “tie”
NewGeneration
CloseWindow
Field “Second”
Select Second = “0”
Fill “”
Field “Third”
Select Third = “0”
Fill “”
Field “Fourth”
Select Fourth = “0”
Fill “”
Field “Money”
Select Money = “0.00”
Fill “”
SelectAll
Field “Money”
Change “$” “”
Change “,” “”
Field “Place”
Copy
Select Place contains “W/D”
Fill “101”
Field “tie”
Fill “WD”
Field “Place”
Select Place contains “DQ”
Fill “102”
Field “tie”
Fill “DQ”
Field “Place”
Select Place contains “100”
Fill “100”
Field “tie”
Fill “CUT”
Field “Place”
Select Place contains “T”
Field “tie”
Fill “YES”
SelectAll
EmptyFill “NO”
Field “Name”
Field FedExPoints
insertfield “Euro”
Field FedExPoints
insertfield “Pounds”
Field First
insertfield “ToPar”
Field First
insertfield “Scoree”
Field tie
insertfield “Placee”
Field “Placee”
FormulaFill Place
Field “Scoree”
FormulaFill Score
Field Place
Deletefield
Field Score
Deletefield
DeleteAbove
Field “year”
Fill “2022”
Field “Name”
FormulaFill replace(Name,“Rafa Cabrera Bello”,“Rafael Cabrera-Bello”)
Field “Name”
FormulaFill replace(Name,“Sebasti·n MuÒoz”,“Sebastian Munoz”)
Field “Name”
FormulaFill replace(Name,“Hao Tong Li”,“Haotong Li”)
Field “Name”
FormulaFill replace(Name,“Thorbj¯rn Olesen”,“Thorbjorn Olesen”)
Field “Name”
FormulaFill replace(Name,“Alexander Bj√∂rk”,“Alexander Bjork”)
Field “Name”
FormulaFill replace(Name,“Alexander Bjˆrk”,“Alexander Bjork”)
Field “Name”
FormulaFill replace(Name,“S¯ren Kjeldsen”,“Soren Kjeldsen”)
Field “Name”
FormulaFill replace(Name,“Roberto D√≠az”,“Roberto Diaz”)
Field “Name”
FormulaFill replace(Name,“Thomas Bj¯rn”,“Thomas Bjorn”)
Field “Name”
FormulaFill replace(Name,“Young-han Song”,“Younghan Song”)
Field “Name”
FormulaFill replace(Name,“Fabi·n GÛmez”,“Fabian Gomez”)
Field “Name”
FormulaFill replace(Name,“Roberto DÌaz”,“Roberto Diaz”)
Field “Name”
FormulaFill replace(Name,“Juli·n Etulain”,“Julian Etulain”)
Field “Name”
FormulaFill replace(Name,“¬°ngel Cabrera”,“Angel Cabrera”)
Field “Name”
FormulaFill replace(Name,"¡ngel Cabrera",“Angel Cabrera”)
Field “Name”
FormulaFill replace(Name,“Sebasti¬∑n Mu√íoz”,“Sebastian Munoz”)
Field “Name”
FormulaFill replace(Name,“Gonzalo Fdez-CastaÒo”,“Gonzalo Fdez-Castano”)
Field “Name”
FormulaFill replace(Name,“JosÈ de Jes˙s RodrÌguez”,“Jose de Jesus Rodriguez”)
Field “Name”
FormulaFill replace(Name,“Sebasti·n V·zquez”,“Sebastian Vazquez”)
Field “Name”
FormulaFill replace(Name,“Augusto N˙Òez”,“Augusto Nunez”)
Field “Name”
FormulaFill replace(Name,“JosÈ Toledo”,“Jose Toledo”)

These are your problem statements. Change them to

InsertLine
«Field Name» = "year"
InsertBelow 
«Field Name» = "par"
InsertBelow
«Field Name» = "p-t"
InsertBelow
«Field Name» = "no"
InsertBelow
«Field Name» = "tournament"
InsertBelow
«Field Name» = "tie"

InsertBelow and InsertLine don’t take any parameters. Those field names are all separate statements. They are implicit assignments. Those aren’t permitted without jumping through some hoops in your preferences, and I don’t remember what those hoops are.

Dave, appreciate it. I have spent four hours trying to fix and couldn’t.
Again thanks again for the help