I am facing following scenario : I have two values A and B and I need to Hide and show it based on ssrs expression. My Conditions :
- If A = 1 and B = 1 show row
- If A = 1 and B = 0 Show row
- If A = 0 and B = 1 Show row
- If A = 0 and B = 0 Hide Row
(I have tried using AND, OR, XOR, AndAlso, OrElse but it is not working.) (Problem arises because SSRS shows when output is false and hides when output is true)