I am utilizing a formula that I have used between other sheets, so that I can type 2 pieces of information in and it populates the information that I need on to the sheet from there.
Here was the original formula (ps i set this up so that I could obtain contact information for 2 parties off 1 submission.)
=IFERROR(INDEX(COLLECT({MiSTRLF NOI Org Add}, {MiSTRLF NOI Primary Contact Last Name}, [Last Name]@row, {MiSTRLF NOI Org}, Organization@row), 1), (INDEX(COLLECT({MiSTRLF NOI Org Add}, {MiSTRLF NOI Secondary LName}, [Last Name]@row, {MiSTRLF NOI Org}, Organization@row), 1)))
I can type in the organization and the last name and it will pull all the contact information to create a list of contacts for me. It works perfectly.
Now I am trying to recreate this for another form that I need to create which I will then offload into excel. Here is the function that I am trying to use:
=INDEX(COLLECT({Project Title}, {Primary Column}, [Project Number]@row, {Loan Applicant}, [Loan Recipient]@row), 1)
The Project title, Primary column, Loan Applicant are all coming from my source sheet. The Project Number/Loan Recipient @row are referencing a cell in that row where I would populate the matching information.
What I do not understand is it will not pull data from the other sheet when I type in the Project Number and Loan Recipient information. I know it is exact as I have copied it exactly from the source sheet. I am following the same set up and yet I get #Invalid Value.
Am I approaching this wrong?
I also want to make this pull in multiple items into one cell once I can confirm that this will work.
For example, I want to pull in from the other sheet the Scope of Work, Damage history, as well as a few other items into one field to summarize the project. Any idea how I would do this?