Identifying data associated with a previous row

Thanks in advance!
From a listing of all meetings, I am hoping to pull in the date of the previous meeting. Note, there are no successors/predecessors with this (I've been able to successfully use Paul's post in other areas to pull in the task name and hoping somehow this could be similar?) Has anyone done anything similar? thanks!
Best Answer
-
If you are just needing to simply pull in the row above, you would first use an auto-number column (called "Auto" in this example) and then a text/number column (called "Row" in this example) with the following column formula:
=MATCH(Auto@row, Auto:Auto, 0)
Then in the [Previous Meeting Date] column, you would use:
=IFERROR(INDEX([Review Date]:[Review Date], Row@row - 1), "")
Answers
-
(note, I also have columns that pull the project 1/2 etc so its listed on each row)
-
If you are just needing to simply pull in the row above, you would first use an auto-number column (called "Auto" in this example) and then a text/number column (called "Row" in this example) with the following column formula:
=MATCH(Auto@row, Auto:Auto, 0)
Then in the [Previous Meeting Date] column, you would use:
=IFERROR(INDEX([Review Date]:[Review Date], Row@row - 1), "")
-
So helpful as always. Thanks Paul!!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66K Get Help
- 429 Global Discussions
- 147 Industry Talk
- 487 Announcements
- 5.2K Ideas & Feature Requests
- 86 Brandfolder
- 152 Just for fun
- 74 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!