
Creator III
2016-03-02
01:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dynamic and compressed filter selection
Hi,
Am having a list box as below,
A A,1,2,r,y,…… A,6,s,7,d,….. B B,e,46y,5,d,h,…. B,e,3,S,7,10,….. |
Actually my list box looks like this, but here my requirement is my listbox should contains only two values as ,
A
B
Here if I select category ‘A’ means it should show what all the filters start with ‘A’ should come in report but my filter should contains only
'A'&'B'
Thanks..
501 Views
1 Solution
Accepted Solutions


MVP
2016-03-02
01:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try like the below expression in the list box
subfield(filedname,',',1)
3 Replies


MVP
2016-03-02
01:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use this expression in the listbox field selection:
=Left(category,1)
Regards
Marco


Master III
2016-03-02
01:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
may be like this in list box expression
=if(WildMatch(yourfield,'*A*'),'A',
if(WildMatch(yourfield,'*B*'),'B',))
or this
=SubField(yourfield,',',1)
439 Views


MVP
2016-03-02
01:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try like the below expression in the list box
subfield(filedname,',',1)
