A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Data entries



 
 
Thread Tools Display Modes
  #1  
Old October 9th, 2008, 11:12 PM posted to microsoft.public.access.tablesdbdesign
knockout competition
external usenet poster
 
Posts: 1
Default Data entries

Hi.

I am trying to restrict the number of data entries allowed in a table field.
The specific number of entries in this case 3.
There is only one field in the table and data will be entered through a form.
  #2  
Old October 10th, 2008, 12:36 AM posted to microsoft.public.access.tablesdbdesign
Jeff Boyce
external usenet poster
 
Posts: 8,621
Default Data entries

Are you saying that you wish to have no more than three records in the
table? Your description sounds a little like you are trying to allow
multiple facts in a single record's field.

Regards

Jeff Boyce
Microsoft Office/Access MVP

"knockout competition" wrote
in message ...
Hi.

I am trying to restrict the number of data entries allowed in a table
field.
The specific number of entries in this case 3.
There is only one field in the table and data will be entered through a
form.



  #3  
Old October 10th, 2008, 01:53 AM posted to microsoft.public.access.tablesdbdesign
Barry A&P[_2_]
external usenet poster
 
Posts: 119
Default Data entries

Knockout
How about using a query to show the top 3 records in a table. that way you
could have a history order of all the winners?

tbl Winners
ID (key)
Name

setup the following query.
(new query in design viewRight clickSQL View paste this code..

SELECT TOP 3 winners.ID, winners.Name
FROM winners
GROUP BY winners.ID, winners.Name
ORDER BY winners.ID DESC;

Hope it helps

"Jeff Boyce" wrote:

Are you saying that you wish to have no more than three records in the
table? Your description sounds a little like you are trying to allow
multiple facts in a single record's field.

Regards

Jeff Boyce
Microsoft Office/Access MVP

"knockout competition" wrote
in message ...
Hi.

I am trying to restrict the number of data entries allowed in a table
field.
The specific number of entries in this case 3.
There is only one field in the table and data will be entered through a
form.




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:49 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.