Reputation: 513
I have a column group on a datafield. I need to group only when there is a value in the field. Right now it groups on the NULL field too.
I have tried the following group expressin:
=Fields!ScaleName.Value <> "" OR Fields!ScaleName.Value <> Nothing
Upvotes: 1
Views: 2580
Reputation: 11115
You can resolve this problem using a Group Filter (right click on group > Group Properties
> Filters
):
=IsNothing(Fields!ScaleName.Value)
Boolean
=
=False
Upvotes: 2