Usando a macro:
1.Abra sua planilha e pressione as teclas "Alt + F11" para abrir o editor do VBA.
2.Coloque a macro abaixo no editor.
Sub FindFormulaCells()
For Each cl In ActiveSheet.UsedRange
If cl.HasFormula() = True Then
cl.Value = "'" & cl.Value & "'"
End If
Next cl
End Sub
3.Para executar esta fórmula, pressione a tecla "F5".