I have a client that wants to have their group act like this;
Company Number is group field.
Have company 160 and 162 in one group together and ALL other company numbers in other groups.
Can ths be done in Crystal XI Enterprise ED?
Printable View
I have a client that wants to have their group act like this;
Company Number is group field.
Have company 160 and 162 in one group together and ALL other company numbers in other groups.
Can ths be done in Crystal XI Enterprise ED?
You could create a new formula field and make group with it
The formula text could be like
Code:If {Table1.CompanyNumber}=160 or {Table1.CompanyNumber}=162 then 160 else {Table1.CompanyNumber}
I would do something similar to jggtz but give them names:
If {Table1.CompanyNumber} in [160,162] then 'CreateName1' else 'CreateName2'