Create a macro with the following code.
Then select the range of formulas and run the code.
Sub InsertIFERROR()
Dim R As Range
For Each R In Selection.SpecialCells(xlCellTypeFormulas)
R.Formula = "=IFERROR(" & Mid(R.Formula, 2) & ",""N/A"")"
Next R
End Sub