Hi guys,I have an Visual Studio 2005 SSRS Report. There are some report columns – january, february, … , december that must have Hidden=True or False. The parameter!Month is a multi value list, that can be checked 1 to 13 times (None, january, . . . , december). (Property of january column:Hidden)=iif(Parameters!Month.Value(0)="None",True,iif(Parameters!Month.Value(1)="January",False,True))Problem: Though “None” is checked in Value(0), the program tries to address Value(1) and gets an address overflow. How can I solve this in another way? RegardsRalf
↧