crystaldev1
Programmer
Hello. I'm using CR 9 and Sql Server 2005. I have a question regarding grouping. If I have a record with 3 different fields which are True, then I would like to display that record in all 3 groups. For example:
I have
Table.bField1 = True
Table.bField2 = True
Table.bField3 = False.
I am using formula in a group as follows:
if Table.bField1 = True then "Group1"
else if Table.bField2 = True then "Group2"
else if Table.bField3 = True then "Group3".
As you can see in the formula, a record will not show up in more than 1 group if more than 1 condition applies. The example above should show that same record in "Group1" and "Group2" since the fields are set to True. I'm sure this is an easy fix. Thanks.
I have
Table.bField1 = True
Table.bField2 = True
Table.bField3 = False.
I am using formula in a group as follows:
if Table.bField1 = True then "Group1"
else if Table.bField2 = True then "Group2"
else if Table.bField3 = True then "Group3".
As you can see in the formula, a record will not show up in more than 1 group if more than 1 condition applies. The example above should show that same record in "Group1" and "Group2" since the fields are set to True. I'm sure this is an easy fix. Thanks.