0
votes

I have dates arranged in a calendar format. Below every date row, there is a row to add notes. Now I have a separate task list in a column. I want to place those tasks automatically under the dates in the calendar. So basic logic I'm trying is if the date in the cell above matches with a date in the column specified, then copy the cell to the left of the matched value and bring it to the current cell.

Sheet link: https://docs.google.com/spreadsheets/d/1wq9D1XQHN2_j40-0PcugYBV2Mmy1b9ZfDVCPUArcbCc/edit?usp=sharing

1
Your question is not completely unclear. Please edit your question to show what formulas you have already tried? Please also supply an example of your current layout and an example of how a successful solution would appear. Also, please share your spreadsheet.Tedinoz
Thank you for taking out time guys! I'm editing the question and placing the link to the sheet there. So basically you can see that Im trying to get this timeline sheet tasks to automatically populate in the calendar sheet in appropriate dates. Im not very good at google sheet formulas so I have manually linked the cells in the 2 sheets right now.curiousfriend

1 Answers

0
votes

This formula should be copied in cell E10 on "calendar View". Then copy the formula into each "Task" cell on Calendar View. The absolute cell references will ensure that the right values from "Timeline" are returned.


=iferror(index(Timeline!$B$3:$C$13,match(E9,Timeline!$C$3:$C$13,0),1),"")