I'm trying to use a range where clause but I always get all rows back in the window. I've used SQL Profiler to see what's happening and I don't see the where clause being added. Here's what I'm doing:
range clear table TBLNAME;
range table TBLNAME where physicalname('field_name' of table TBLNAME) + " LIKE '%" + strVal + "%'";
fill window WINDOW_NAME;
The help file is pretty limited and I've found a lot of examples that use the above. What am I missing?
*This post is locked for comments