I am trying to filter a set of records that contain certain criteria in the description. Has anyone had any luck in trying to use filter to records using a wild card? Trying to obtain the same functionality as with TSQL where you can use LIKE '%criteria%'
Example:
Transfer 1000; 12345-Doe, John
Goal:
Pull all records where description is like "Transfer 1000."
I am trying to avoid pulling all records and using javascript to then iterate to idenify the LIKE scenario.