Include updated_at field in CSV Export

Is is possible to  include the updated_at field in a csv export?  I’m managing an event registration and need to see the last time users’ forms are updated.  Thank you!

Sure, that would be a good addition to the csv. Here are some changes you can make now that will be included in the the next release. Please open formidable/pro/classes/views/frmpro-entries/csv.php and change line 15ish from:
echo '"'. __('Timestamp', 'formidable') .'","IP","ID","Key"'."\n";

to:
echo '"'. __('Timestamp', 'formidable') .'","'. __('Last Updated', 'formidable') .'","IP","ID","Key"'."\n";

And right after line 71ish
echo "\"{$formatted_date}\",";

add these two lines:
$formatted_date = date($wp_date_format, strtotime($entry->updated_at));
echo "\"{$formatted_date}\",";

Works perfect.  Thanks for your help.

Topic closed.