473,652 Members | 3,039 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking For More Efficient Data Entry

One of my duties is to record student grades each report period(6). The
tables in the database basically look like:
TblStudent
StudentID
Name
etc

TblStudentGrade
StudentGradeID
GradePeriod
StudentID
Grade

The way the tables are, I need to enter the student each grade period. The
students are essentially the same students each period so my thinking is I
should only need to add new students and drop students who have left the
class. If the form was in a grid or matrix, I could have the name in the
first column and successive grade periods in the next six columns. Is there
a way to do this?

Thanks!

Maria
Nov 13 '05 #1
4 2028

"Maria" <ml*******@cson line.net> wrote in message
news:2C******** *********@newsr ead3.news.atl.e arthlink.net...
One of my duties is to record student grades each report period(6). The
tables in the database basically look like:
TblStudent
StudentID
Name
etc

TblStudentGrade
StudentGradeID
GradePeriod
StudentID
Grade

The way the tables are, I need to enter the student each grade period. The
students are essentially the same students each period so my thinking is I
should only need to add new students and drop students who have left the
class. If the form was in a grid or matrix, I could have the name in the
first column and successive grade periods in the next six columns. Is there a way to do this?


Sounds as if you might like a spreadsheet better.

There are "grid controls" for other programming languages, but none that can
be bound to Access data in an Access application, AFAIK.

Do you need to see all the students and all the grade periods on the same
form to enter a grade for the current period? Pivot tables or cross-tab
queries would let you, without much trouble, structure a report that way.
But seems to me you only need to step through all the students one by one to
enter the grade(s) for the current period.

A main form by student will allow you to add/delete students and navigate
from student to student, and a subform would let you enter the grade for
this period... if you want to see all the grades for that student, use a
continuous forms view in the subform.

Larry Linson
Microsoft Access MVP
Nov 13 '05 #2
"Maria" wrote
One of my duties is to record student grades each report period(6). The
tables in the database basically look like:
TblStudent
StudentID
Name
etc

TblStudentGrade
StudentGradeID
GradePeriod
StudentID
Grade

The way the tables are, I need to enter the
student each grade period. The students are
essentially the same students each period so
my thinking is I should only need to add new
students and drop students who have left the
class. If the form was in a grid or matrix, I could
have the name in the first column and successive
grade periods in the next six columns. Is there
a way to do this?


First, there's nothing about your table design that forces you to "enter the
student each grade period" -- you didn't describe whether you are entering
data in datasheet view, or in a form, but see below.

Sounds as if you might like a spreadsheet better.

There are "grid controls" for other programming languages, but none that can
be bound to Access data in an Access application, AFAIK.

Do you need to see all the students and all the grade periods on the same
form to enter a grade for the current period? Pivot tables or cross-tab
queries would let you, without much trouble, structure a report that way.
But seems to me you only need to step through all the students one by one to
enter the grade(s) for the current period.

A main form by student will allow you to add/delete students and navigate
from student to student, and a subform would let you enter the grade for
this period... if you want to see all the grades for that student, use a
continuous forms view in the subform.

Larry Linson
Microsoft Access MVP

Nov 13 '05 #3
Maria wrote:
One of my duties is to record student grades each report period(6).
The tables in the database basically look like:
TblStudent
StudentID
Name
etc

TblStudentGrade
StudentGradeID
GradePeriod
StudentID
Grade

The way the tables are, I need to enter the student each grade
period. The students are essentially the same students each period so
my thinking is I should only need to add new students and drop
students who have left the class. If the form was in a grid or
matrix, I could have the name in the first column and successive
grade periods in the next six columns. Is there a way to do this?

I've done this in code.
I create a "flat file" table where the data is entered and use an update
event to add/edit/delete the relational tables that were used for reporting.

The client demanded it because their atterndance record "always" looked like
that. Mostly a lot of busy work but there was some fun in it and I got paid
a lot more.

You would be better off with a form/subform showing the students in a
listbox on the main form and linking the subform to that student.
Nov 13 '05 #4
Your table structure is correct -- it may be tempting to make a table
with six fields for the six periods per student, but your method
offers the best flexibility over the long term. However (as you have
discovered), data entry is made more difficult using this "normalized "
structure.

I think that you have two alternatives:
- use a temporary table for data input with six columns for the six
periods, and write some VBA code to transfer from the temporary table
to the permanent (existing) table at some point in time.
Alternatively, you could enter the six grades into unbound textboxes
on the main form, and transfer them to the table using VBA code.

- modify your data-entry procedure. Instead of trying to enter all
periods for a single student, try entering all the students for a
single period. You could build a form/subform in which the period was
selected in the main form, and the subform would show all the
students' grades for that period. You could populate the table with
blank records for each student for the selected period so that you
would not have to manually create each student's record for that
period. This could be done with VBA on a command button, or when you
select the period (say, from a combo box), or when the subform gets
focus.
On Sun, 05 Sep 2004 02:12:14 GMT, "Maria" <ml*******@cson line.net>
wrote:
One of my duties is to record student grades each report period(6). The
tables in the database basically look like:
TblStudent
StudentID
Name
etc

TblStudentGrad e
StudentGrade ID
GradePeriod
StudentID
Grade

The way the tables are, I need to enter the student each grade period. The
students are essentially the same students each period so my thinking is I
should only need to add new students and drop students who have left the
class. If the form was in a grid or matrix, I could have the name in the
first column and successive grade periods in the next six columns. Is there
a way to do this?

Thanks!

Maria

*************** *******
ja************* *@telusTELUS.ne t
remove uppercase letters for true email
http://www.geocities.com/jacksonmacd/ for info on MS Access security
Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

22
2274
by: Martin MOKREJ© | last post by:
Hi, I'm looking for some easy way to do something like include in c or PHP. Imagine I would like to have: cat somefile.py a = 222 b = 111 c = 9
2
2849
by: scadav | last post by:
I am new to Perl and I am trying for figure out how to solve this problem. If anyone can give me some suggestions, I would greatly appreciate it. I am trying to read a log file and generate some statistics from it. For simplicity purposes (only) I have edited some of my logs and code. Below is an example of a log file which has 3 columns (separated by commas). The first column contains a time stamp, the second column contains a...
1
3431
by: Simeon Nevel | last post by:
As a personal exercise, I'm trying to create a call tracking DB for my own use at work. Here's an abbreviated version of the database layout: Company: CompanyID - Primary Key (Text Length 4) CompanyName OtherData
116
7489
by: Mike MacSween | last post by:
S**t for brains strikes again! Why did I do that? When I met the clients and at some point they vaguely asked whether eventually would it be possible to have some people who could read the data and some who couldn't but that it wasn't important right now. And I said, 'sure, we can do that later'. So now I've developed an app without any thought to security and am trying to apply it afterwards. Doh!, doh! and triple doh!
10
1967
by: Teis Draiby | last post by:
In an application manipulating streaming video and 3D stuff I want to implement mutithreading to ensure a decent UI response time. Since my application is very speed critical I want to use the most efficient synchronization of the shared data objects. What would that be in this case? I think there's a very simple answer to this, but I am somewhat confused by the different methods available. The data I need to transfer between threads...
10
1296
by: Bonj | last post by:
I almost understand TSTs, to the point where I just need to know the answer to this: When making a TST (in C++) that will have as its leaf nodes words that make up SQL language and an categorising identifier for each one, and each layer of the tree will represent comparison of a further letter within the search string, what will happen when a particular node is a leaf node itself, but also has leaf nodes of its own? i.e. specifically, as...
23
1574
by: walterbyrd | last post by:
Way back when, I got a lot of training and experience in highly structued software development. These days, I dabble with web-development, but I may become more serious. I consider php to be an abombination, the backward compatibility issues alone are reason enough to make me hate it. Rail looks promising, but it's difficult to find inexpensive hosting that supports rails. I like python much better, but I'm not certain it's as well...
1
2477
by: joshai | last post by:
Hi, I'm pretty new to the php/mysql world and am building an article database for a website with multiple content types. I have an entry screen built that allows the site owner to enter articles, set article types, and set articles as features. Each page in the site calls the database for a feature article for that pages content type, then calls again for the 5 newest articles of that content type excluding any article that is identified as a...
0
8367
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8703
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8467
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8589
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7302
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4145
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4291
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1914
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1591
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.