google spreadsheet - Making QUERY function case insensitive -
=query(d4:f385;"select d,f d contains '"&j4&"'")
if in j4 cell have tree
, query grabs cells containing tree
, not tree
.
how make case insensitive?
changing formula from: =query(d4:f385;"select d,f d contains '"&j4&"'")
to: =query(d4:f385;"select d,f lower(d) contains '"&j4&"'")
trick!
the more elegant solution welcomed.
Comments
Post a Comment