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!

? Flagging records, or naming cells in part of a column...

Status
Not open for further replies.

magicdust

Technical User
Aug 15, 2005
11
AU
Hi there.

I am preparing data for some telemarketing for 4 people.

I have a field called 'record owner' in which I want to allocate records to each caller.

How can I select 200 records and name the record owner 'linda', then the next 200 and name 'helen' etc. So tomorrow they can filter by their name and get their allocated records.

Many thanks in advance...

Magic
 
You may try something like this (SQL code):
UPDATE yourTable SET [record owner]='linda'
WHERE yourPK In (SELECT TOP 200 yourPK FROM yourTable WHERE [record owner] Is Null)

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top