I have parameter in my stored procedure @Selection nvarchar
that can hold string values. So I will pass in that parameter something like 'Today,yesterday,last week'. In the stored procedure, I make sub strings from that parameter and put them into a temp table and make same field hiding. And it works.
But I don't know how to hide fields in ssrs on the same way like in stored procedure. I will put value in that parameter and for example I will want to hide/show some field based on that value.
So if I have value 'Today,yesterday,last week', I would like to hide 3 fields, first one will depends on today value, second on yesterday and last one on last week.
答案 0 :(得分:0)