Hello,
I've been wracking my brain trying to understand why this doesn't work.
I have a sheet with some project-related data including the columns "START DATE" and "END DATE" which are date columns because they have dependencies on the duration column etc.
I'm making a new sheet for resource allocation, and I need to bring over those dates.
What I'm trying to do is have each project with their ID, so when I type the ID number data as the project name, status, project leader, and DATES are brought over.
I managed to pull everything with =Index =Match formulas, except for the dates.
=INDEX({Sheet with the column with the dates I need}, MATCH([Project ID]@row, {Sheet with the column with projects IDs that need to be matched}))
this simple formula has worked very effectively, except for the Date column, I created another column named Start Dates and have it in text/number format so I could write the formula, but didn't work either, showing the error #INVALID COLUMN VALUE.
I also tried using
=VLOOKUP([Project ID]@row, {sheet with the range of 1rst column being my projects IDs till my last column being the Start Date, 11, false)
11: is the number of the column where my dates were.
that didn't work either bringing up the same error #INVALID COLUMN VALUE.
What am I doing wrong? or how can I bring up those dates when I type the Project ID?
Thank you!