I have developed SSRS Report. I am calling this report from C# code and passing filter parameters from there.I have to show the columns depending on one of the filer values received from code.Hence I am using below expression.
=IIF(Instr(JOIN(Parameters!Metrics.value,","),"5")>0,False,True)
But this is causing problem because report renders all values for Metrics 5,15,25,.... etc.Please suggest me solution so that it will take only that specific value.I tried using InstrRev as well but no luck.
Thanks in Advance !!