Home > Community > FPScript > Automated export from formula to CSV file > Antwort auf: Automated export from formula to CSV file

#9242
Bernhard KantzBernhard Kantz
Teilnehmer

If you want to automate the export you have to write a VBA macro.

Example:

Dim oFml As Formula
Set oFml = ThisDatabase.RootFolder.Object(“Formula”, fpObjectTypeFormula)
oFml.Export fpExportFormatCSV, “…Path…”

support@weisang.com