I'm using crystal 8 with a csv file. I hope this is worded so it makes sense.
csv file
id home_phone work_phone cell_phone preferred_phone
1 444-4444 233-5555 555-5555 555-5555
2 222-4444 555-6555 222-4444
3 333-3333 333-3333
========
1. If there is a preferred phone # then I need to have the preferred phone # listed as the first # and also the type that the preferred phone # matches (will always match one of the types). Also, if one of the other phone #s are different then list those #s too.
2. If there is no preferred phone # then list HOME, WORK, CELL. If one of those #s are the same then just list the phone # once.
id
1 PREFERRED (CELL) 555-5555, HOME 444-4444, WORK 233-5555
2 PREFERRED (HOME) 222-4444, CELL 555-6555
3 HOME 333-3333
Thanks for any help you can give me.
csv file
id home_phone work_phone cell_phone preferred_phone
1 444-4444 233-5555 555-5555 555-5555
2 222-4444 555-6555 222-4444
3 333-3333 333-3333
========
1. If there is a preferred phone # then I need to have the preferred phone # listed as the first # and also the type that the preferred phone # matches (will always match one of the types). Also, if one of the other phone #s are different then list those #s too.
2. If there is no preferred phone # then list HOME, WORK, CELL. If one of those #s are the same then just list the phone # once.
id
1 PREFERRED (CELL) 555-5555, HOME 444-4444, WORK 233-5555
2 PREFERRED (HOME) 222-4444, CELL 555-6555
3 HOME 333-3333
Thanks for any help you can give me.