Hi -
Smartform is provided as a MySQL database, but it's easy enough to export files from the smartform database to Excel using standard commands in MySQL, such as (here exporting everything for the year 2010 in one command line step):
SELECT * FROM historic_races join historic_runners using (race_id) where year(meeting_date) = 2010 INTO OUTFILE '/tmp/smartform_2011_2012.csv' FIELDS TERMINATED BY ',' ENCLOSED BY '"' ESCAPED BY '\\' LINES TERMINATED BY '\n';
Or you can use the export facilities in popular MySQL visual interface tools like SequelPro (for Mac) or HeidiSQL (for Windows).