I have an Excel document with groups and username names in such a format:
Group1 user1
user2
user3
Group2 user2
user4
Group3 user5
etc.etc. Each of the Groups is a single row, with all the users as a multiline entry inside a cell.
I need it to be in a single line format, so I can export it as a CSV and do something useful with it.
I don't care HOW it gets transformed (excel hotkey, python script, whatever) but it needs to look like:
Group1 user1
Group1 user2
Group1 user3
Group2 user2
Group2 user4
Group3 user5