Someone gives me a spreadsheet of a schedule. The columns are the days of the month, and the rows are the workers names. The cells hold the names of the places they are scheduled. Two people cannot be scheduled at the same place on the same day.
It might looks like this:
I would like to convert the spreadsheet so that the rows are the places, and the cells hold the peoples names. I would like the output to look like this:
I could do this manually but was wondering if there was some functionality in Calc that would make automating this process easier?
I have tried writing a formula to fill in the first cell for the ‘Bathroom’ row in my desired solution:
=INDIRECT(ADDRESS(MATCH($A$11,B3:B6,0)+2,1))
Is there a simpler way?