I'm trying to convert collected information on team's schedules in office into a calendar view to represent it.
The data is collected as 1 row per week (checkmark if in the office of Week Start on X Monday).
However, converting that into 1 row per day each Team is in the office (to be able to represent in the calendar view) is proving challenging.
I can calculate the dates as references to the Week Start (adding 0,1,2,3,4 to the result if the cell is checked off) =IF(T:T=1,(Week Start)+1)
I think I'm supposed to be using JOIN, COLLECT and probably MAX or min with a unique number added to it because I'm dealing with duplicate names to pull on in Team Name, but I have no idea how to convert the horizontal row data into a unique row result.
I'd love the data to look like this ^ and to result in a calendar that looks like below.
Any thoughts on how to go about that?