
Not applicable
2013-09-13
06:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Finding related records
list box has a list of item codes
table has records with item codes that are similar
how do I select records in the table that are similar to the selected value from the list box, that is, the values in the table will be "like" the value in the table?
349 Views
1 Reply

Partner - Champion III
2013-09-14
05:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can use a Select in Field action assigned to the OnSelect trigger of the field in the listbox. Choose as Field the field that contains the similar values you want selected. Use as search string ='(' & concat(distinct '*' & ItemCode & '*', '|') & ')'. Replace ItemCode with the actual name of the field in your listbox.
talk is cheap, supply exceeds demand
230 Views
