On 6 Mar, 21:01, asimon... (AT) gmail (DOT) com wrote:
Quote:
Hi, I have about 100 seperate fp7 files in a folder and need to import
them all into a single filemaker db.
Is this possible
Thanks |
If they all have numerical sequence names, you can use a script
similar to the following:
Set Variable [$count; Value:1]
Set Variable [$total; Value:100]
Loop
Set Variable [$import,Value:"file:../Desktop/Test/Imp_" & $count &
".fp7"]
Import Records [No Dialog; "$import"; Add; Windows ANSI]
Set Variable [$count; value:$count + 1]
Exit Loop If [$cout = $total + 1]
End Loop
Show All Records
Show Custom Dialog ["Imported " & $total & " Records."]
It will import all files called Imp_1.fp7 to Imp_100.fp7 from a folder
called Test on the Desktop. Obviusly you can change the file path,
name and number.
Hope that works out for you.