Hi, I had set the row visiblity of an group as show. my group by row which has the expand / collapse icon is (+) by default. I want it to show (-) by default. hope you understand my problem. please reply at the earlist. thanks in advance
Welcome to the forums. Under the expression run: =iif (Fields!enabled.Value = 0 OR Fields!enabled.Value IS Nothing, True, False) Essentially, this will change the Hidden property to True if the value of the enabled column is 0 or NULL. Otherwise, the Hidden property will be set to false.