I have a matrix where I am calculating the Total depending on the other textbox value.
This is my expression which calculate Total. If any of the box contains "*" value in SSRS.
This expression is applied on total =
=Switch((ReportItems!Textbox7.Value="*"), "*", Count(Fields!Q3_A_1.Value)>19, Count(Fields!Q3_A_1.Value))
However, this expression is applied to above textbox7
=(Switch(Count(Fields!Q3_A_1.Value)<5, "*", Count(Fields!Q3_A_1.Value)>5 , Count(Fields!Q3_A_1.Value)))