Вот быстрый скрипт, который выведет формулы в активном листе с соответствующим адресом ячейки
Sub ExportFormulas()
Dim myFile As String
myFile = Application.DefaultFilePath & "\formulas.txt"
Open myFile For Output As #1
Dim cel As Range
For Each cel In ActiveSheet.UsedRange.Cells
If InStr(cel.Formula, "=") > 0 Then
Write #1, cel.Address, cel.Formula
End If
Next cel
Close #1
End Sub