I am a beginner in SSRS and maybe this may sound easy, I have a dataset like below.
What I want to achieve is:
For column region
and country
I used a Row Groups
. For column New lead
I used this expression
=IIF(Fields!TextA.Value=Fields!TextB.Value AND Fields!Subject.Value = "New Lead" AND NOT(Fields!Category.Value = "Closed"), Fields!Total.Value + 1, nothing)
to get Total
value for each Subject
and just change the harcoded value for Fields!Subject.Value
for Column Contract, Qualify
but the value is not populated. I Checked there is no typo for hardcoded value. I can achieved this by using matrix but the columns arrangement for new Lead, Contract and Qualify
is not like I wanted.