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  

Yes/No check box



 
 
Thread Tools Display Modes
  #1  
Old April 26th, 2005, 11:15 PM
Fly Boy5
external usenet poster
 
Posts: n/a
Default Yes/No check box

I'm trying to store a 1 or 0 in the field but don't seem to understand how. I
made a filler feedback linked table with input form. I'm want to grade
several items, then total and come up with a % of failures.

Any help would be appreciated

Jim
  #2  
Old April 26th, 2005, 11:39 PM
Pavel Romashkin
external usenet poster
 
Posts: n/a
Default

Fly Boy5 wrote:

I'm trying to store a 1 or 0 in the field but don't seem to understand how. I
made a filler feedback linked table with input form. I'm want to grade
several items, then total and come up with a % of failures.

Any help would be appreciated

Jim


A little more detail would be helpful, but I will venture a guess that
you could use option groups to directly bind to the table data. You can
set up option group radio buttons to return 0 or 1. Then, make the
option group bound to the Response field in your table. To get
percentage, run GROUP BY query on your table:

SELECT Sum(ResponsE)/Count(Response)*100 AS ReplyPercent FROM Table1
GROUP BY Customer_ID

or something like that.

Cheers,
Pavel
 




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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Yes/No datatype Matt General Discussion 2 January 24th, 2005 02:03 PM
Getting Spell Check Macro to work Tom Hyland General Discussion 8 January 14th, 2005 06:45 PM
option of blank in Yes/No check box in form kim Using Forms 4 October 9th, 2004 12:14 PM


All times are GMT +1. The time now is 05:01 AM.


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