This content has been marked as final.
Show 2 replies
-
1. Re: Filtering by Beginning String?
Tracy RodgersMar 8, 2012 10:07 AM (in response to rogermcclain)
Hi Roger,
This can be done by creating a calculated field similar to the following:
if STARTSWITH([Product Name], 'R' ) then 'R Products'
elseif STARTSWITH([Product Name], 'L') then 'L Products'
else 'Rest of Products' end
Then, place this on the filter shelf and show the quick filter. Hope this helps!
-Tracy
-
2. Re: Filtering by Beginning String?
rogermcclain Mar 8, 2012 4:02 PM (in response to Tracy Rodgers)Thanks Tracy! Simple to set up and it worked