existsInColumn
Check if a value is in a list of elements (or an G. Sheets column)
You can combine this function with the combineAll function in order to check if one value is present in several columns
- value: The value to check if exists in a column
- column: The column of items to search in
- Boolean: True or False if the element exists or not
existsInColumn("JohnMu", A3:A6)
// Column values: apple, banana, JohnMu, Cheese
// Returns True
- Check if a value is present in a column
Last modified 7mo ago