Multiple value field in view

Hi, everyone:

Does anybody know, can multiple value field be shown in a view? can we use this field in view selection? If so, how to do it? Thanks for the help!!!

Subject: multiple value field in view

Yes, you can show a multivalue field in a view column. Look at the Column Info tab (first one) in the Column Properties box to determine the multivalue separator, or look on the second tab and check Show Multiple Values as Separate Entries.

You can also use a multivalue field in the view selection formula. How you do it depends on what you’re trying to get. If you have a multivalue field on your document that has the choices A, B, C, and D, and you want your view to display documents that have A checked (regardless of whether any of the others are checked), you can do SELECT @Contains(yourField; “A”). Modify however you need to in order to get the documents you need.

Subject: multiple value field in view

Try using @IsMember(“ValueToSearchFor”; FieldName) function for selection. To show the field value, use the multiple value parameter of the column properties with the maximum line of the view properties. If to many values, try with @implode(FieldName; “Separator”) function