Hello,
I have a master sheet that I am referencing which contains multiples rows that I need reflected on my teams sheet. There is a column named "Vuln Mgmt" (set as a dropdown/multi-select) that has options Yes: 3rd party, Yes: Security, or No. I want to create a formula that will reference the entire master sheet and look for the phrase "Yes: Security" then feed out the data in the first column of that row.
I recycled another VLOOKUP formula I used to pull data in from the master sheet, the only difference being that instead of putting a specific keyword for the search value, I referenced a cell on my teams sheet.
Formula being used in my team sheet that works: =VLOOKUP([Customer Name]@row, {VulnMgmt Data Set}, 3, false)
New formula that throws 'No Match': =VLOOKUP("Yes: Security", {VulnMgmt Data Set}, 1, false)
I am not sure if VLOOKUP is the best formula for this or how to move forward without manually updating this. Let me know if additional details are needed.