Filter for exact ID value
I have 2 tables, one for IMAGES an one for PRODUCTS. I've set up a filter for my IMAGES list view that is populated by data from the PRODUCTS table (key=prod_id and value=prod_name). Each image in the IMAGES table is associated to it's corresponding product through a "corr_product_id" field. In other words, there can be many different images associated to the same product id.
If I select a "apple" with an id value of "25" from the filter dropdown, the list view will refresh and give me all images associated to the "apple" product (id 25), but also all of the images associated with the "orange" product (id 125), the "banana" product (id 250) and any other product that has 25 anywhere in its id number.
Is it possible to configure the filter to return only the exact matches (i.e. only the product with an id number of 25)?
Comments