I want to filter a certain field of a table with data that starts with the leter “E”. What the code to write. i tried this but its not working. please help.
Emp_Payroll.SETFILTER ( Emp_Payroll.“Job Title”,*E );
Thanks in advance.
Festus
I want to filter a certain field of a table with data that starts with the leter “E”. What the code to write. i tried this but its not working. please help.
Emp_Payroll.SETFILTER ( Emp_Payroll.“Job Title”,*E );
Thanks in advance.
Festus
Hey Festus,
Try with SETFILTER(“Title”,‘E*’) insted.
Hi Festus,
Erik has given you the solution. As thi i not a code field and you may not want this to be case sensitive so you can use :
Emp_Payroll.SETFILTER ( Emp_Payroll.“Job Title”,’@E*’ );
Thanks Guys. It has worked perfectly. I appreciate.
Thanks once again.