Trying to automatically change dropdown values in a google sheet, if the data matches from another sheet

Viewed 23
1 Answers

If you wish about formula then could try following formula. See your sheet.

=BYROW(B4:B28,LAMBDA(x,IF(ISNUMBER(MATCH(x,G4:G10,0)),"IN","OUT")))
Related