In SharePoint XSLT Data view webpart with multiple values lookup column to filter based on querystring values can be achieved using XSLT Filtering
Here is XSLT
filter to do the this, it filters out the rows based on the query
string parameter.
filter to do the this, it filters out the rows based on the query
string parameter.
[contains(concat(@Category,’;’),concat($QuerystringParameter,’;’))]
Here
we are appending the value with a character (for example ‘;’) because
the result of both functions [contains(‘1′,’1’) and contains(‘1′,’11’)]
returns true but using [contains(‘1;’,’1;’)] solves the problem.
we are appending the value with a character (for example ‘;’) because
the result of both functions [contains(‘1′,’1’) and contains(‘1′,’11’)]
returns true but using [contains(‘1;’,’1;’)] solves the problem.
Thanks to the post