I'm using crystal 9 with a csv file
csv file:
subject id
PRE 100
PRE 110
PRE 200
PRE 212
PRE 300
The problem that I am having is that some of these id numbers might be in different groups and if I use else if then in a formula, it only finds it in the first group (finance) where the id is listed.
if subject='PRE'
and
id in [100,110,200]
then
'Finance'
else if
subject='PRE'
and
id in [100,200,300]
then
'Professional'
etc.
Help is appreciated
csv file:
subject id
PRE 100
PRE 110
PRE 200
PRE 212
PRE 300
The problem that I am having is that some of these id numbers might be in different groups and if I use else if then in a formula, it only finds it in the first group (finance) where the id is listed.
if subject='PRE'
and
id in [100,110,200]
then
'Finance'
else if
subject='PRE'
and
id in [100,200,300]
then
'Professional'
etc.
Help is appreciated