David B
11/11/2021, 8:30 PMWHERE myMultiSelectField IS NOT NULL
results incl. null values
WHERE myMultiSelectField IS NOT EMPTY
results incl. null values
WHERE myMultiSelectField IN ('1')
no records found (1 being a value the multi-select could be)
WHERE myMultiSelectField = '1'
no records found
WHERE myMultiSelectField != ''
no records foundClay Roper
11/11/2021, 8:37 PMbattk
11/11/2021, 8:41 PMbattk
11/11/2021, 8:41 PMDavid B
11/11/2021, 8:45 PM