Google Sheets queries cannot match text using contains
or starts with
when there the text to match contains a hyphen, and the hyphen is not the last character in the text to match. Am I doing something wrong? If not, is this a bug? Is there a workaround?
"select count(A) where A starts with '2021-'"
will return the count of matching results.
"select count(A) where A starts with '2021-0'"
, on the other hand, always claims there are no matching results even if there actually are.