Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
How can I modify it, to get case insensitive results
cValue = LOWER( ALLTRIM( Thisform.Text1.Value ) )
SELECT SomeAlias
LOCATE FOR LOWER( ALLTRIM ) SomeField == cValue
small typeo in Marcias example above
cValue1 = ALLTRIM(thisform.Text1.Value)
lcField1 = thisform.cbo1.Value
*!* Evaluate is better and faster than & (A.K.A "macro substitution")
Set Filter to lower(cValue1) $ Lower(Evaluate(lcField1)) IN "MyTable"
GO TOP IN "MyTable" && Ensures that the filter is enforced on the table
*!* Here's another way to do it
Select "MyTable"
Set Filter to ATC(cValue1, Evaluate(lcField1)) > 0
LOCATE && is faster than Go Top, but you need to have MyTable selected first