I have a survey that is to be completed by a set # of store locations (896 locations).
I have a formula that will check the worksheet containing the survey inputs for store #. If Store # is absent then checkbox is checked.
I want to built a lookup such that if you enter a Store # the result will either be;
'Survey has been completed'
or
'Survey has not yet been completed'
my lookup formula is;
=IF(CONTAINS([Store #]@row , {3rd Wave outstanding surveys-Store List}), "Survey NOT yet submitted", "Survey has been received")
Below is screenshot of Lookup. Store # is 7.
Below is screenshot of worksheet which is identifying which stores have surveys submitted or not.
Survey for Store #7 has been received evidenced by the check.
Store #7 is NOT part of the 'List of stores yet to complete survey', yet my lookup says that survey has NOT yet been submitted.
I have also tried this formula;
=IF(HAS({3rd Wave outstanding surveys-Store List}, [Store #]@row ), "Survey NOT yet submitted", "Survey has been received")
Below screenshot is result. Store #3 IS present in 'List of stores yet to complete survey', however, lookup is indicating that it has been received.
I'm stumped.