0

I need help with writing a conditional expression for counting specific rows of the dataset using which I determine to make a textbox visbile

DataSet_Example
Name  value   Level 
ABC   12345   PG1
DEF   45677   PG2
FEG   98098   PG1

I want to count the rows based on the level. Something Like the one below iff(CountRows("DataSet_Example").Level == PG1 < 1)

How do I do it in SSRS expressions?

aduguid
  • 3,099
  • 6
  • 18
  • 37
ndavid9
  • 13
  • 3

1 Answers1

0

You need insert a row group for "Level" and then set your visibility expression for each row to the following:

=IIF(CountRows("Level") > 1 , condition if true, condition if false )

SuperSimmer 44
  • 964
  • 2
  • 7
  • 12