Dynamic function (i.e. vlookup) with offset?

Noviceman

New Member
Joined
Nov 20, 2019
Messages
1
Hey everyone,

I have a excel file like the one shown below. I need to be able to find the date (D1), by using vlookup, index/match etc. of "Project 1" (A1 - merged) and Start (C1). I've been trying to use Match the return the cell coordinates of "Project 1" (row, column), and then use offset to go to date (D1). I could then use different offsets for midpoint and finish. What is the best way to approach this? For my final result, I need a formula that uses "project 1" to find the right value for start, midpoint, end etc., and shift this value into another sheet.

Thanks for your help
 

Attachments

  • excelproj.PNG
    excelproj.PNG
    88.7 KB · Views: 6

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Code:
return D1

=INDEX('Name of Sheet'!D:D,MATCH("Project1",'Name of Sheet'!A:A,0))

return D2 by offsetting 1 row

=INDEX('Name of Sheet'!D:D,1+MATCH("Project1",'Name of Sheet'!A:A,0))

return D3 by offsetting 2 rows

=INDEX('Name of Sheet'!D:D,2+MATCH("Project1",'Name of Sheet'!A:A,0))
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,897
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top