Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting Value List to separate tables or queries 1

Status
Not open for further replies.

neilgeurin2000

Technical User
Apr 16, 2003
12
US
Hi, this is probably exceptionally simple but it is beating me down so I thought I would ask:

I have a query which lists a member code in one column and a one digit number (anything from 0 to 7) in the second column which corresponds to number of transactions. I would like to separate the people with a 2 value from everyone else, is there an easy way to convert these people to a new table or query? Thanks in advance.

 
How 'bout
[blue][tt]
Select MemberCode
From myQuery
Where NumberOfTransactions = 2
[/tt][/blue]
 
Thanks for putting up with silly questions. Your answer worked perfectly and I appreciate it!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top