Created a Form for use with a videogame on Google Sheets, in order to track participation in group activities. I would like to have the data from Column C split and transposed across multiple columns, but am having trouble finding a solution that doesn't require me to manually expand the formula across the columns myself.
Here's an example of what I'm looking to do: Desired Result
From Column F and on, Row 1 is the timestamp, row 3 is the fleet commander, and rows 4 and on are the fleet members (it's fine if the fleet commander is there too, but brownie points if we can filter that individual out since they are also listed in row 3). This data will then be used to track each member's participation over time so they're rewarded for it.
So far I'm using =TRANSPOSE({Form!C2:C}) and following that up with =TRANSPOSE(SPLIT(D4,", ",0)), =TRANSPOSE(SPLIT(E4,", ",0)), etc. Like I said, though, I don't want to manually expand the cells because there will be a lot of fleets going out (including when I'm asleep) and the data needs to be updated ASAP.