I own a small business. Need to track a few hundred pieces of rental
equipment that can be in any of a few dozen locations. I'm an old-time C
language programmer (UNIX environment). If the only tool you know how to
use is a hammer, every problem tends to look like a nail. That said, I
could solve my problem in C, but it's not the right tool. I need to come
into the Windows world, and I need to get this done in Access or
something similar.
I have made a start in Access, and am making good progress, buy I'm
stymied by a query (or family of queries) that I will need.
I have defined two tables (over-simplified here): Eqpt and Loc for
attributes of the equipment and location, respectively. Primary Keys are
EqptID and LocID.
Since the equipment moves around between locations, I have a third table
with three attributes: EqptID, LocID, and EqLocDate. The date is the
date on which a piece of equipment was placed at a location. I need a
query for this third table.
1. Each piece of equipment will have multiple entries in this table. I
need to find the most recent (latest date) entry for each piece of
equipment. This can then be used to generate a report showing, for each
location, what equipment is currently at that location.
Can anyone help with that query? 10 2446
Your tables are excellent! Create a query that includes all three tables.
You need the first two to get the equipment name and the location name.
Include the following fields in your query:
EquipName, Locationname, EqLocDate. Click on the Sigma (looks liks capital
E) button in the toolbar at the top of the screen. Under EqLocDate, change
Group By to Max. Run the query and you should get an unique list of
equipment and its current location. Base your report on this query.
You haven't said anything about having a table to record equipment being
returned from rental. This will also need to be included in the above query
because the above query will list all equipment that has ever been rented
and will actually show where it was last rented although it may have been
returned.
--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
Over 1150 users have come to me from the newsgroups requesting help re******@pcdatasheet.com
"L. R. Du Broff" <fo*@bar.com.invalid> wrote in message
news:Xn*****************@216.77.188.18... I own a small business. Need to track a few hundred pieces of rental equipment that can be in any of a few dozen locations. I'm an old-time C language programmer (UNIX environment). If the only tool you know how to use is a hammer, every problem tends to look like a nail. That said, I could solve my problem in C, but it's not the right tool. I need to come into the Windows world, and I need to get this done in Access or something similar.
I have made a start in Access, and am making good progress, buy I'm stymied by a query (or family of queries) that I will need.
I have defined two tables (over-simplified here): Eqpt and Loc for attributes of the equipment and location, respectively. Primary Keys are EqptID and LocID.
Since the equipment moves around between locations, I have a third table with three attributes: EqptID, LocID, and EqLocDate. The date is the date on which a piece of equipment was placed at a location. I need a query for this third table.
1. Each piece of equipment will have multiple entries in this table. I need to find the most recent (latest date) entry for each piece of equipment. This can then be used to generate a report showing, for each location, what equipment is currently at that location.
Can anyone help with that query?
PCD wrote: Your tables are excellent! Create a query that includes all three tables. You need the first two to get the equipment name and the location name. Include the following fields in your query: EquipName, Locationname, EqLocDate. Click on the Sigma (looks liks capital E) button in the toolbar at the top of the screen. Under EqLocDate, change Group By to Max. Run the query and you should get an unique list of equipment and its current location. Base your report on this query.
You haven't said anything about having a table to record equipment being returned from rental. This will also need to be included in the above query because the above query will list all equipment that has ever been rented and will actually show where it was last rented although it may have been returned.
--
To anyone reading this thread:
It is commonly accepted that these newsgroups are for free
exchange of information. Please be aware that PC Datasheet
is a notorious job hunter. If you are considering doing
business with him then I suggest that you take a look at
the link below first. http://home.tiscali.nl/arracom/whoissteve.html
Randy Harris
"L. R. Du Broff" <fo*@bar.com.invalid> wrote in
news:Xn*****************@216.77.188.18: I own a small business. Need to track a few hundred pieces of rental equipment that can be in any of a few dozen locations. I'm an old-time C language programmer (UNIX environment). If the only tool you know how to use is a hammer, every problem tends to look like a nail. That said, I could solve my problem in C, but it's not the right tool. I need to come into the Windows world, and I need to get this done in Access or something similar.
I have made a start in Access, and am making good progress, buy I'm stymied by a query (or family of queries) that I will need.
I have defined two tables (over-simplified here): Eqpt and Loc for attributes of the equipment and location, respectively. Primary Keys are EqptID and LocID.
Since the equipment moves around between locations, I have a third table with three attributes: EqptID, LocID, and EqLocDate. The date is the date on which a piece of equipment was placed at a location. I need a query for this third table.
1. Each piece of equipment will have multiple entries in this table. I need to find the most recent (latest date) entry for each piece of equipment. This can then be used to generate a report showing, for each location, what equipment is currently at that location.
Can anyone help with that query?
What you need is a query nested within another query
the inner one first. SELECT top 1 two.locID FROM [third table]
ALIAS two WHERE two.eqptid = eqpt.eqptID ORDER BY EqLocDate DESC
the outer query is
SELECT EqptID,(x) as CurrentLoc from eqpt ORDER BY CurrentLoc
where x is the inner query,
Nested you get
SELECT EqptID,(SELECT top 1 two.locID FROM [third table] ALIAS
two WHERE two.eqptid = eqpt.eqptID ORDER BY EqLocDate DESC) as
CurrentLoc from eqpt ORDER BY CurrentLoc; .
Change [third table] to the real name of your third table.
--
Bob Quintal
PA is y I've altered my email address.
"PCD" <no***@email.com> wrote in
news:lC******************@newsread3.news.atl.earth link.net: Your tables are excellent! Create a query that includes all three tables. You need the first two to get the equipment name and the location name. Include the following fields in your query: EquipName, Locationname, EqLocDate. Click on the Sigma (looks liks capital E) button in the toolbar at the top of the screen. Under EqLocDate, change Group By to Max. Run the query and you should get an unique list of equipment and its current location. Base your report on this query.
Again, PCD posts incorrect information. Doing this will return
the maximum of EqLocDate for each piece of equipment at each
location., because of the group by under the location.
You haven't said anything about having a table to record equipment being returned from rental. This will also need to be included in the above query because the above query will list all equipment that has ever been rented and will actually show where it was last rented although it may have been returned.
That's not necessary, as the equipment not rented out is in
location "Rental Shop"
--
Bob Quintal
PA is y I've altered my email address.
"PCD" <no***@email.com> wrote in
news:lC******************@newsread3.news.atl.earth link.net: You haven't said anything about having a table to record equipment being returned from rental. This will also need to be included in the above query because the above query will list all equipment that has ever been rented and will actually show where it was last rented although it may have been returned.
Not trying to track individual rentals (that's handled separately). What
I need to track is the location where a piece of equipment is currently
assigned, or based. Scenario is, place a piece of equipment a Location
A, where it does it's rental thing for a while. At some point, that
piece of equipment is returned to the warehouse (location 'W') for
service. After being serviced, it becomes a spare, then when needed, it
goes to location B for rental. If you imagine this cycle with a few
hundred pieces of equipment and a few dozen rental locations, it becomes
important to be able to track where each piece of equipment is based.
We visit each rental location at least once a month, and the first thing
we need to do upon arrival is to do a physical inventory of the equipment
at that location. We need to be able to flag missing equipment
accurately, and without false alarms. We have been using spreadsheets to
make the equipment list, but it's obvious that an Access solution is far
better for this task. The spreadsheets are inherited -- bought the
business from someone who had hired a computer "expert" to organize this,
and the "expert consultant" did it with Excel, which leaves a lot to be
desired for this task.
"L. R. Du Broff" <fo*@bar.com.invalid> wrote in message
news:Xn*****************@216.77.188.18... "PCD" <no***@email.com> wrote in news:lC******************@newsread3.news.atl.earth link.net:
The spreadsheets are inherited -- bought the business from someone who had hired a computer "expert" to organize this, and the "expert consultant" did it with Excel, which leaves a lot to be desired for this task.
Was his name Steve and were his fees very reasonable?
;-)
Keith.
"Keith Wilby" <he**@there.com> wrote in
news:44**********@glkas0286.greenlnk.net: "L. R. Du Broff" <fo*@bar.com.invalid> wrote in message news:Xn*****************@216.77.188.18... "PCD" <no***@email.com> wrote in news:lC******************@newsread3.news.atl.earth link.net:
The spreadsheets are inherited -- bought the business from someone who had hired a computer "expert" to organize this, and the "expert consultant" did it with Excel, which leaves a lot to be desired for this task.
Was his name Steve and were his fees very reasonable?
;-)
Keith.
Don't know his name, but I'm told that his expertise was available for
$10.00 (that's TEN) dollars an hour.
"L. R. Du Broff" <fo*@bar.com.invalid> wrote in message
news:Xn*****************@216.77.188.18... "Keith Wilby" <he**@there.com> wrote in news:44**********@glkas0286.greenlnk.net:
Was his name Steve and were his fees very reasonable?
Don't know his name, but I'm told that his expertise was available for $10.00 (that's TEN) dollars an hour.
Sorry, it was a bit of an in-joke at the expense of a regular AUP-breaker on
here. :-)
Keith.
"L. R. Du Broff" wrote the "expert consultant" did it with Excel, which leaves a lot to be desired for this task. Was his name Steve and were his fees very reasonable?
Don't know his name, but I'm told that his expertise was available for $10.00 (that's TEN) dollars an hour.
<SARCASM> What a wonderful bargain! I can't even get my lawn mowed for
$10.00 (that's TEN) dollars an hour. </SARCASM>
<VOICE OF EXPERIENCE> Beware any who represent themselves as "expert" and
offer to sell their expertise for $10.00 per hour. </VOICE OF EXPERIENCE>
Larry Linson
Microsoft Access MVP
The previous owner hired Arno R as an "Expert" and the previous owner
learned the hardway about Arno R!
PC D
"L. R. Du Broff" <fo*@bar.com.invalid> wrote in message
news:Xn*****************@216.77.188.18... "Keith Wilby" <he**@there.com> wrote in news:44**********@glkas0286.greenlnk.net:
"L. R. Du Broff" <fo*@bar.com.invalid> wrote in message news:Xn*****************@216.77.188.18... "PCD" <no***@email.com> wrote in news:lC******************@newsread3.news.atl.earth link.net:
The spreadsheets are inherited -- bought the business from someone who had hired a computer "expert" to organize this, and the "expert consultant" did it with Excel, which leaves a lot to be desired for this task.
Was his name Steve and were his fees very reasonable?
;-)
Keith.
Don't know his name, but I'm told that his expertise was available for $10.00 (that's TEN) dollars an hour. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: lawrence |
last post by:
I've been bad about documentation so far but I'm going to try to be
better. I've mostly worked alone so I'm the only one, so far, who's
suffered...
|
by: netpurpose |
last post by:
I need to extract data from this table to find the lowest prices of
each product as of today. The product will be listed/grouped by the
name only,...
|
by: paii |
last post by:
I have a table that stores job milestone dates. The 2 milestones I am
interested in are "Ship Date" TypeID 1 and "Revised Ship Date" TypeID 18.
All...
|
by: pw |
last post by:
Hi,
I am having a mental block trying to figure out how to code this.
Two tables:
"tblQuestions" (fields = quesnum, questype, question)...
|
by: K. Crothers |
last post by:
I administer a mechanical engineering database. I need to build a
query which uses the results from a subquery as its input or
criterion.
I am...
|
by: google |
last post by:
I have a database with four table. In one of the tables, I use about
five lookup fields to get populate their dropdown list. I have read
that...
|
by: ward |
last post by:
Greetings.
Ok, I admit it, I bit off a bit more than I can chew.
I need to complete this "Generate Report" page for my employer and I'm
a...
|
by: Rnykster |
last post by:
I know a little about Access and have made several single table
databases. Been struggling for about a month to do a multiple table
database with...
|
by: pbd22 |
last post by:
Hi.
I need some help with structuring my query strings.
I have a form with a search bar and some links. Each
link is a search type (such as...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...
| |