Forums

Results form multipage format .csv or .xls

sylwekb 24 Jul, 2016
Is it possible results from form multi-page format .csv or .xls and send e-mail? How does it perform?
GreyHead 25 Jul, 2016
Hi sylwekb,

I'm never clear what the practical purpose of exporting a single record to Excel?

That said you can use the CSV Export action to save a file to the server, then attach the file to an email. Please see this FAQ

Bob
sylwekb 25 Jul, 2016
The idea is that filling form fields after sending and attach the file in a format .csv or .xls results entered into the form fields.
Is it possible?
GreyHead 25 Jul, 2016
Hi sylwekb,

I still have no idea why you would wan to do that :-(

You can use the Data Path option in the CSV EXport action to select some or all of the current data. You would need to set a path which you could do with a Custom Code action like this
<?php
$form->data['data_path'] = $form->data;
?>

Bob
This topic is locked and no more replies can be posted.