When downloading registration data the report is missing an entire question for all registrants. The question is being answered during registration but the report is not including that question.
I’m having hard time accessing your site. Your site can’t be reached and took too long to respond. Can you check with your hosting with regards to this.
When EE generates the CSV report it uses the ‘Question Label (admin-only)’ value for the headers.
We had a report recently from a user using the same value for multiple questions (in fact, all of the questions in a group) which meant that when EE looped over the questions to add them into the CSV it was just overwriting the last question with the next.
Something like this:
foreach($questions as $question) {
$csv_data[$question->admin_label] = $question->answer;
}
This means if more than 1 question has the same label you will only see the ‘last’ question to process in the CSV.
If you look at the missing question and check the Questin label value, is that header already set in the CSV with the answer for another question? If so edit the ‘missing’ question and change the question label value to something unique to the question and it should show up.
The support post ‘CSV Export not including all data’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.