0

I have the following iif

IIF(LEN(Fields!IDENTITE.Value)=0,"Known manager","Unknown manager")

Yet for some specific case, nothing is appearing (e.g. no known nor unknown)

I checked the results with a sql query and nothing is appearing (the result is below)

enter image description here

I amended my iif to reflect this case

IIF(COUNT(Fields!IDENTITE.Value)=0,"Known manager","Unknown manager")

Yet the same issue is appearing

Any ideas on the why?

Thanks

Update : I tried the countrows as mentionned by @breez and I got this error

enter image description here

Andy K
  • 4,944
  • 10
  • 53
  • 82

1 Answers1

0

One of the possible way to deal with the absence of rows is the following:

  • Click on the tablix , look for NoRowsMessage option and type the text you want (example: "No known managers")

Next time there are no rows, this message will be displayed

PS: It is only doable for matrix, list and tables not for textbox. For more info, click here

Community
  • 1
  • 1
Andy K
  • 4,944
  • 10
  • 53
  • 82