I have a study that collects values throughout each session. It's a custom zigZag I scripted. As is now, i have it printing to the output window in a format like in the attached picture. Then I open it with excel, and delimit based on the commas in my 'Print()' commands.
You can see for each occurrence of the event on the day, it prints a new line, so that there are multiple dates of the same day.
The format I would like is to print the date only ONCE for each row, with the corresponding values for the events that occurred on that day.
So for that, would I need to start an array each day, and store the values in that array, then at the end of each session, have it print in the format I want? I.e...

Comment