I am using a form to add a new row to a sheet with each submission. I have a field on the form that the user selects if this is a new contact or previous contact. If it is a previous contact, I want to pull information from another sheet for this contact.
To do this I have a Vlookup formula that I was able to get working and populates the fields pulling the desired information from another sheet when this particular option is chosen on the submission form. However, when the other option is chosen for that field on the form the data in those cells is overridden and Vlookup stops working for future entries.
Example of when it works:
=IF([Request Type]14 = "Prior Resource - See Outside Resources Sheet", (VLOOKUP([Full Name]14, {Resources Database (Demo) Range 1}, 9, false)))
Once form submission "[Request Type] = New Resource" the user will enter the data for the fields that the Vlookup is in for Prior Resource selection.
Then next entry will not use Vlookup formula. How do I get the entire sheet to use formula regardless of last entry?