473,770 Members | 1,861 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reports and Returns in Forms (Newbie needs help)

11 New Member
Hi everyone,
Well I'm a newbie to Access and your site so forgive me if my terminology is a little out. I'm currently trying to create what i thought would be a simple database for work. I'm in the British RAF and I'm currently in charge of the training cell at our Training Depot. Heres my problem, one of the tasks within my job role is to manage 3000+ training publications. These are signed out to instructors in various numbers, however i receive updates for the publications on a regular interval and at present i have to trawl through hundreds of pieces of paper to establish who has the required publication, and how many they have. At present the publications are on an excel spreadsheet, this allows me to work out how many i have in store, and how many are issued.
What i would like to do is get the database i am working on to provide me with is the following:
  • The ability to add new contact (Customer) via a form - Achieved!
  • A form that allows me to add / remove publications to the publications table - Achieved!
  • A form that will allow me to establish who has a particular publication including there contact details
  • A form that allows me to search for a publication and update information
  • A form that allows me to view what a contact (Customer) has signed out
  • And finally a form that will tell me how many of a particular publication i have signed out and how many i have in store.
The tables I have and the fields they contain are as follows:
Customers - Service Number (Key), Name, and contact information
Inventory - Publication Number (Key), Title, Amendment Number, Quantity Held
Publication Issues - Publication Issues, Customer Service Number, Quantity Issued (No Key)
I have a relationship set up between the tables which seems to work.

Could anyone advise me on how to resolve any of problems I'm having. I have been scouring the internet for weeks now but I'm getting lost in it all.

If anyone can help I'm more than willing to send you the database to look at if it will help.

Many thanks Gunnerman6875
Jan 3 '07 #1
23 2854
NeoPa
32,573 Recognized Expert Moderator MVP
Gunnerman,
That's a pretty good stab at a first post.
Could I just ask that you repost your table details in this format :
Posting Table/Dataset MetaData
Expand|Select|Wrap|Line Numbers
  1. Table Name=tblStudent
  2. StudentID; Autonumber; PK
  3. Family; String; FK
  4. Name; String
  5. University; String; FK
  6. MaxMark; Numeric
  7. MinMark; Numeric
It is often very important to know the data types of fields for working within a database.
BTW PK - Primary Key
FK - Foreign Key (a link into another table).
Lastly, when (which hours of the day) are you generally available to work on this?
Jan 3 '07 #2
AricC
1,892 Recognized Expert Top Contributor
Just a question. Are you part of the Air Wing? I used to do a job that sounds exactly like this (with a C-130 unit). The US Navy actually has a program that does all of this. I don't want to deter you from building your own DB though.
Jan 3 '07 #3
Gunnerman6875
11 New Member
Gunnerman,
That's a pretty good stab at a first post.
Could I just ask that you repost your table details in this format :
Posting Table/Dataset MetaData
Expand|Select|Wrap|Line Numbers
  1. Table Name=tblStudent
  2. StudentID; Autonumber; PK
  3. Family; String; FK
  4. Name; String
  5. University; String; FK
  6. MaxMark; Numeric
  7. MinMark; Numeric
It is often very important to know the data types of fields for working within a database.
BTW PK - Primary Key
FK - Foreign Key (a link into another table).
Lastly, when (which hours of the day) are you generally available to work on this?
Hi AricC,
Thanks for your reply, Firstly in answer to your question about what I do, I'm a member of the RAF Regt, we are basically the infantry arm of the British RAF. We deal mainly with the off base defence of airfields, so my publications are on tactics, doctrine and weapon systems.
With regards the database, since posting the thread yesterday I have managed (not quite sure how!!) to resolve a lot of the problems, I wrote a query that had a criteria written into it. By using the same query and re-writing / repositioning the criteria each time it has allowed me to get what i need.
I now have the problem of being able to find out how many of a particular publication are issued. I've written another query that will find all of a particular publication by putting in a criteria, and it brings back all the issues of that pub, but i cant work out how to total them all up!
I'm not sure how to get the table information to you in the format you have requested but here goes with a first attempt:
Expand|Select|Wrap|Line Numbers
  1. TableName=Publication Issues
  2. Publication Issues; Text
  3. CustomerSerNo; Text
  4. QuantityIssed; Number
As you see there is no PK on this table, is this correct?
I hope this helps.

You asked me when I was available to'work on this, Im around all day at present as I'm on leave, back to work on Sunday, as of then I'm about in the evenings Mon-Fri from 6 to late if required.
Jan 4 '07 #4
NeoPa
32,573 Recognized Expert Moderator MVP
Expand|Select|Wrap|Line Numbers
  1. TableName=Publication Issues
  2. Publication Issues; Text
  3. CustomerSerNo; Text
  4. QuantityIssed; Number
Hi,
This is fine.
This tells me that you have only the one table available in the database and that you have a text field called [Publication Issues] within the table called [Publication Issues]. Is that all correct?
Next, you speak of queries that you've developed already that give you the data that you want but not in exdactly the right format or not returning all the data you need. Can you post the SQL of these please. That will help to convey what's going on.
If you can attach your database to a post in here that would be even better.
Assuming you're living and working in Britain (given your job that's reasonable) then I'm in the same time-zone (South London). This gives us a better chance of working together.
Jan 4 '07 #5
Gunnerman6875
11 New Member
Expand|Select|Wrap|Line Numbers
  1. TableName=Publication Issues
  2. Publication Issues; Text
  3. CustomerSerNo; Text
  4. QuantityIssed; Number
Hi,
This is fine.
This tells me that you have only the one table available in the database and that you have a text field called [Publication Issues] within the table called [Publication Issues]. Is that all correct?
Next, you speak of queries that you've developed already that give you the data that you want but not in exdactly the right format or not returning all the data you need. Can you post the SQL of these please. That will help to convey what's going on.
If you can attach your database to a post in here that would be even better.
Assuming you're living and working in Britain (given your job that's reasonable) then I'm in the same time-zone (South London). This gives us a better chance of working together.
Hi NeoPa,
Thanks for the reply,
I have no problems attaching the database to a post but I'm unsure how to do this so a little nudge in the right direction would be great. As mentioned the database is now pretty much getting there, however I cant work out how to get a query to calculate the total amount of a particular publication I have out. I would Idealy like it to tell me how many I have left in my store.
As I originally said I'm a total newbie to Access and this is my first database, so posting it would be good as it would be great to let an expert look it over and provide me with some feedback and ways i might be able to improve it, either in the way it works or in the appearence.
I'll look forward to hearing back from you.
PS. I'm currently in Gloucester but posted in Suffolk,so the time-zone is good for me.
Jan 4 '07 #6
NeoPa
32,573 Recognized Expert Moderator MVP
I will try to find out about the posting of attachments.
The easiest way is to upload it to some sort of private webspace type site then post a link in here. I'm afraid I don't use that myself though so can't help much. I know other members have though - as well as uploading attachments I believe. Maybe someone helpful will post an answer :).
In the meantime, and while I'm getting home, can you confirm the question from my previous post that I'd understood correctly the situation. Cheers.
Jan 4 '07 #7
NeoPa
32,573 Recognized Expert Moderator MVP
Nothing else here for the moment.
I'm asking the question about posting attachments in the admins/mods area but no response as yet. Will pass back the info when found.
Please don't forget to respond to my request for confirmation in post #5.
Probably catch you tomorrow.
Jan 4 '07 #8
NeoPa
32,573 Recognized Expert Moderator MVP
The attachment thing can be done immediately after posting a reply (within 5 minutes).
1. Edit post.
2. Manage Attachments.
3. Select file etc...
I'll look in again tomorrow.
Jan 5 '07 #9
Gunnerman6875
11 New Member
The attachment thing can be done immediately after posting a reply (within 5 minutes).
1. Edit post.
2. Manage Attachments.
3. Select file etc...
I'll look in again tomorrow.
Hi NeoPa,
Good news, I've now managed to resolve all of my problems apart from one. Now that I've done it it was really simple, It was just a matter of working out what i needed to query, and how to sum them!!! (I know but as i said i am a total novice!!!), However I've now spent the last 2 1/2 hours trying to resolve my final query with no success. I think i know what i need to do but cant work out how to do it. I'm going to attemp to attach the database as per you instructions so you'll be able to see exactly what i have (or haven't) got.
OK I think I need to query a query. What I am trying to do is find out a total of how many of a particular publication i have left in my store, this should be the taken from the queries: [total amount held], minus [total for each pub], (I think!)
Anyway see what you think.

Cheers

Gunnerman6875
Jan 5 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

5
3026
by: BStorm | last post by:
I have a transaction log file where the DataSet table's Description column is actually delimited into "subcolumns" based upon the transaction id. I would like to parse these into separate fields for reporting purposes and am wondering if anyone knows if this is easily accomplished using the .NET version of Crystal Reports? For example, the description column may be reporting on a dataentry error as follows: TXNCODE: 1010001
1
2917
by: longtim | last post by:
I have been having endless difficulty creating reports/queries that set any relevent parameters from controls in forms. I am creating an application under access 2003 but will target access 2000. The access file is in access 2000 format. I have a form that will hold the relevent parameters for the query/report that reports the statistics for all job records that match a certain criteria. These are: - A Customer Name.
7
8869
by: dog | last post by:
I've seen plenty of articles on this topic but none of them have been able to solve my problem. I am working with an Access 97 database on an NT4.0 machine, which has many Access reports. I want my users to be able to select a report, click on a command button on a form, which will then automatically create the report as a pdf file and save it to the user's machine. I am using Adobe Acrobat (5.0 I think) and have Adobe Distiller as a
5
4042
by: Jerry Hull | last post by:
I'm working with a database developed by an untrained person over several years - and on a network that has recently been upgraded with a new server installed and MS office upgraded from 2K (I think - it might have been XP) to 2003. The database is impressive, both in what it does and the obtuse and inconsistent ways it works. There are several hundred queries, for example, with no indication of where they are used or if they are in fact...
11
6600
by: Grasshopper | last post by:
Hi, I am automating Access reports to PDF using PDF Writer 6.0. I've created a DTS package to run the reports and schedule a job to run this DTS package. If I PC Anywhere into the server on where the job is running, the job runs sucessfully, PDF files got generated, everything is good. If I scheduled the job to run at the time that I am not logged into the server, Access is not able to print to the printer. The error is pretty...
6
4143
by: Josetta | last post by:
Access 2003 I've been experiencing some problems with my "monster" database the last couple of days. I imported all objects into a new database yesterday, which pretty much stopped the crashing problems, but here's something weird: Whenever I copy an object (reports so far), I am able to open it and make changes, but when I try to save it (without closing), it appears to save (message box goes off), but it doesn't. Then, if I try to...
1
1508
by: narpet | last post by:
Hello all... I have a C# forms application that I am developing using MS Visual Studio 2005. I am trying to add some Crystal Reports to this application using the built in Crystal Reports tools with Visual Studio. It seems like it should be pretty straight forward, but no matter what I do I can't get my reports to actually show data. Here's the info: I created a crystal report viewer on a form. I created a crystal report that has a data...
8
3087
by: Brock | last post by:
I am trying to populate a Crystal Report from data in my DataGrid. The reason for this is that I want the user to be able to change values without updating the database, but still have their report reflect the values they anticipate committing to see hypothetical totals of columns from a set of records. These records are displaying properly on my DataGrid but I'm not sure how to get Crystal Reports 10 to use as its datasource the dataset...
22
9319
by: g diddy | last post by:
Hi I'm relatively new to VBA and could really do with some help please!! This is going to sound really long winded i'm sorry but I hope it will paint a picture of what i'm trying to do. Basically here is what I want to do: I want a form (Selector) to have 4 check boxes and a Run command button. When the user clicks run another form (ReportsMenu) will appear giving various options. Importantly though, when the user clicks OK (in the...
0
9617
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
10254
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10036
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
8929
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...
1
7451
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5354
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
5481
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3607
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.