Answers for "google sheets data validation custom formula filter"

SQL
0

google sheets data validation custom formula filter

-- Google Sheets: Using filter()
--   in custom formula in data validation

=query(filter('sheet1'!$A$2:$A, 'sheet1'$A$2:$A < 4),
       "select Col1 where Col1 = '" & 'sheet2'!A2 & "'")
       = 'sheet2'!A2

-- Note: The 'sheet2'!A2 must be
--   the first (top-left) cell of the validated range
Posted by: Guest on June-02-2020

Code answers related to "google sheets data validation custom formula filter"

Code answers related to "SQL"

Browse Popular Code Answers by Language