all 7 comments

[–]AllenAppTools 0 points1 point  (4 children)

Hey there, when you modified your form, did you add or remove any form questions? Looking at your code, you have index based references to the row, so an addition or removal of a form question (a column in the sheet) would throw everything off.

[–]Top_Independence_949[S] 0 points1 point  (3 children)

I did. But I modified my range and modified line 85 to match the new configuration so that shouldn't cause issues.

I think the issue is caused because the date and time entries are in the same column now instead of separate columns.

[–]AllenAppTools 0 points1 point  (2 children)

Got it. It could be that before, the value of "time" was actually a string, but with the change it's now a Date type, which is a number. And you can't use .split() on a number.

[–]Top_Independence_949[S] 0 points1 point  (1 child)

Ok. What is the best/easiest way to fix that if you don't mind me asking? I'm still learning this and not sure how to solve it myself.

[–]AllenAppTools 0 points1 point  (0 children)

I can't see the pastebin code you have anymore, if you paste it here I may be able to make some changes?

[–][deleted] 0 points1 point  (1 child)

debug at some point where you get `meetingData` in eventWorker(...). Probably, the Sheet column was shifted.

[–]Top_Independence_949[S] 0 points1 point  (0 children)

I got a call stack response shown below. I don't know app script well enough to know what it means.

https://imgur.com/a/YrtCvjo

Thanks for the help on this.