Hello community,
I was trying to reference some data from one sheet to another via formula but it doesn't seem to work error in cell:
" #unparseable"
, here a breakdown of my goal and the formula I am trying to use:
have 2 separate sheets, in the main one named request for information where people will submit their request i have set the following columns: ID number. Requester's email. Date of request. Date of answer.
Discipline: A drop-down list containing the available disciplines (e.g., Structure, Architecture, MEP). Recipient email. (here where i need to assign my formula)
Status: A status indicator (e.g., Pending, Approved, Denied)( i will automate through workflow) Note or comment: A space for additional comments or notes.
In the second sheet it is simple with 3 columns first one is ID name, then Discipline: drop down list exactly similar to the one in the request for information sheet, and one more column containing recipient email.
What i need is whenever a requester populate the discipline column in the "Request for information sheet" the recipient email in this sheet will be automatically filled with the email found in the rows of the second sheet named "Discipline List Sheet".
Formula: Vlookup formula
VLOOKUP([Discipline], [Discipline List Sheet].[Discipline]:[Recipient Email], 2, FALSE)
Index formula: (In case i have two recipient in the same discipline)
INDEX([Discipline List Sheet].[Recipient Email], MATCH([Discipline], [Discipline List Sheet].[Discipline], 0)):INDEX([Discipline List Sheet].[Recipient Email], MATCH([Discipline], [Discipline List Sheet].[Discipline], 0) + 1)
Here are 2 pics of my sheet if it can help understand the process.
Request for info sheet:
Discipline list sheet:
Thank you in advance for your help,