Here is my dilemma. I have a database that we use to register people for a conference. In the table Registration there is a Long Integer field for Roommate, which stores the Value of the RecNumber value of a another record. This was so I could assign roommates based on people who were already registered.
Now I am trying to print off a roommate list, and I am trying to figure out how to make it not print doubles. Here is what I get
Name Roommate
----------- ------------
Joe Smith Sally Mae
Sally Mae Joe Smith
Eric Smile etc
I want it to say
Name Roommate
----------- ------------
Joe Smith Sally Mae
Eric Smile etc
Can this be done?
Now I am trying to print off a roommate list, and I am trying to figure out how to make it not print doubles. Here is what I get
Name Roommate
----------- ------------
Joe Smith Sally Mae
Sally Mae Joe Smith
Eric Smile etc
I want it to say
Name Roommate
----------- ------------
Joe Smith Sally Mae
Eric Smile etc
Can this be done?