Hi @pressworthammer,
Thanks. Glas you like it.
I had a bit of a giggle when I saw your question. But I’ve been wondering it myself if CSV was something I should offer as a file type. This request backs that up ??
Let me check as to how easy that will be to render. I believe the library I use has this as a possibility. I’m just curious as to how it will render unicode items.
As to your other questions. It is my intention to release question 1 in the next release. You will be able to drag and drop the the fields in the wanted order.
2) is already possible, if you know some php.
add_filter('gfexcel_output_columns',function($columns, $formid) {
// You can add a column here
$columns[] = 'Extra columnname';
return $columns;
},10,2);
add_filter('gfexcel_output_rows',function($rows, $formid) {
//add content for the specific row
foreach($rows as &$row) {
$row[] = 'Content for extra column';
}
return $rows;
},10,2);
TBH, I haven’t checked the code above. But something like that should work.
Let me know how it turns out!