I'm trying to show table based on parameter inputs (2 parameters).
1)- if the first one is blank and second has the user input, it should display table 1
2)- if the second one is blank and first has the user input, it should display table 2
3)- if both parameter has value inserted by user , then it should display table 3
I get stuck in third condition (for table 3), where both parameter has values in it.
Expressions for these tables are (under visibility ):
Table 1:
=Parameters!Store.Value<>"" And Parameters!Sku.Value=""
Table 2:
= Parameters!Store.Value="" And Parameters!Sku.Value<>""
Table 3:
= Parameters!Store.Value="" And Parameters!Sku.Value=""
Please let me know mistake in my expressions if any or suggest solution as Im new to SSRS.
Thanks.
ZK