What I want to do
I want to change rows background color if the column "NCRNumber"'s value is present in the multivalue parameter named listeRNC.
Here's the SSRS I am using right now :
= iif ((Parameters!listeRNC.Value.ToString() = Fields!NCRNumber.Value.ToString()), "Khaki","White")
What this does
This is only colouring the first row (which is also the first element in the Parameters!listeRNC)..
I know that I can access various item in the MultiValue list like this
Parameters!listeRNC.Value(index)
But how can I do a lookup in this list ? Just like with List.Find Method or with a foreach ?