Duckman,
Here is a little Sub I typed up that will export all formulas in the current worksheet to a text file. Just paste this Sub into a new module of the current workbook, change the Row and Column ranges to fit your worksheet, select the worksheet you want to export the functions from and run the Sub.
This Sub will list all cells that begins with "=" even if they only contain a formula like =A1/$F$3 but at least it's a beginning and you can probably refine it as you see fit.
Have fun
Yomet
Public Sub ExportFunctions()
Dim outFile As Integer
Dim RowVar As Integer
Dim ColVar As Integer
On Error GoTo SubExit
outFile = FreeFile
Open ActiveWorkbook.Path & "\Functions.txt" For Output As #outFile
'Change the indexes for your own Column range from 1 to 256 - in English from "A" to "IV"
For ColVar = 1 To 10
'Change the indexes for your own Row range from 1 to 65536
For RowVar = 1 To 10
'Change "Sheet1" to reflect your own worksheet
If Left(Worksheets("Sheet1").Range(Cells(RowVar, ColVar), Cells(RowVar, ColVar)).Formula, 1) = "=" Then 'This cell contains a formula
Print #outFile, "Row " & RowVar & ":Col " & ColVar & " - " & Worksheets("Sheet1").Range(Cells(RowVar, ColVar), Cells(RowVar, ColVar)).Formula
End If
Next
Next
SubExit:
Close #outFile
End Sub