Excel Formula:
=IF(SUM(IF(ISNUMBER(FIND(TRIM(MID(SUBSTITUTE(C2," ",REPT(" ",LEN(C2))),SEQUENCE(1,LEN(C2)-LEN(SUBSTITUTE(C2," ",""))+1,1,LEN(C2)),LEN(C2))),A2:A10)),1,0))=LEN(TRIM(C2))-LEN(SUBSTITUTE(C2," ",""))+(LEN(TRIM(C2))>0), "acceptable response", "requires review")
While this works great, my only issue with it is that I think it works by verifying letter by letter, meaning if the cell I'm verifying contains "Straw" and I had in my list "Strawberry", it will still return "True" since Straw is in one of the words that's part of my list.
The reason I'm doing this is because I have a multiple selection drop down list in my questionnaire and I'm building a verification tab for it to ensure all users inputs are correct.
The way the code is written, it takes the word count and compares it to how many matches it found in my given list, meaning if a user was to remove the data validation in that cell with multiple selection (like pasting something in there), it will most probably always flag it as an error.
What I wanted to know is if it is possible to make it verify the entire word and not go letter by letter? As mentioned, my current code works perfectly fine, I am just curious to know if what I am suggesting is possible in Excel formulas.
(FYI) I am aware that if there is a solution, I will have to amend my list to contain the word itself as well as the word following a comma.
Thanks a lot in advance for the help