I am using excel as a database. I am searching through it using a query. I am using LIKE
from SQL. I would like to search ignoring the case.
When I try following
...LOWER([COLUMN_NAME]) LIKE "%query%"
It throws me the error as IErrorInfo.GetDescription failed with E_FAIL(0x80004005).
When I use [LOWER(COLUMN_NAME)] LIKE "%query%"
It gives error as No value given for one or more required parameters.
Can somebody point me to right syntax to use for case insensitive searching ..