Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PeterDuthie

    roviding a "Find Record" for a subform on a tab control

    Hello all. I'm stumped with this one and would be very grateful for some help. I have a Form with contains a tab control with a subform on each of the three tab pages. (It so happens that there is a one to many relationship between page 1 and 2 and page 1 and 3. The database is growing fast and...
  2. PeterDuthie

    Reference table column computationally in sql query - how

    Hello All. I have a stacked query which returns a series of rows of numbers (1-5) which refers to one of 5 columns in a table. How can I (or maybe I can't do this) code the column names with the numbers returned from the stacked query. Here's an example of what I want to do. I want to end up...
  3. PeterDuthie

    Reference table column computationally in sql query - how

    Hello All. I have a stacked query which returns a series of rows of numbers (1-5) which refers to one of 5 columns in a table. How can I (or maybe I can't do this) code the column names with the numbers returned from the stacked query. Here's an example of what I want to do. I want to end up...
  4. PeterDuthie

    Query with counts for Chart in report

    Hello Everyone. I need to get back two values from a query - 1. the total number of rows in a table and 2. the number of "incidents" which have been "signed off" (i.e.) dealt with successfully within 48 hrs. The two values are intended for a pie chart. Here's what I've got...
  5. PeterDuthie

    Query with counts for Chart in report

    Hello Everyone. I need to get back two values from a query - 1. the total number of rows in a table and 2. the number of "incidents" which have been "signed off" (i.e.) dealt with successfully within 48 hrs. The two values are intended for a pie chart. Here's what I've got...
  6. PeterDuthie

    How do I get a query to return summed time fields? or ....

    It'll probably be more clear if I show you the query I'm using: SELECT DecontaminationRecord.Location, Sum(DecontaminationRecord.LOShrs_mins) AS LOS_SUM, tblLocation.Loc FROM DecontaminationRecord, tblLocation WHERE (DecontaminationRecord.[Date] = [Forms]![frmGetDate]![DateForReport]) and...
  7. PeterDuthie

    Am I doing this all wrong?

    Please excuse me if I'm being dense here. This is the problem: Personnel database which is used by various departments each with a table and form recording relevant data. The Main "Workforce" table generates an autonumber which is then used as that person's "ID" and is the...
  8. PeterDuthie

    Joining Tables - FAQ wanted

    I've got the Access 2000 Developers Set but they seem to expect me to know a bit about Joining tables - I don't. So, can some kind person point me to a web source (tutorial?) which will explain what it's all about - Inner / Outer / Left etc. Cheers, Peter
  9. PeterDuthie

    Forms on Tab Control Design

    It's a bit messy this one but I'm sure somebody must have done something like this before: There's a main table which has (at the moment, but could have more later) two tables which hold details about the main table. These have a 1 to M relationship with the main table and we have the...
  10. PeterDuthie

    Refreshing a value - immediately

    Sorry everyone - I have searched for info on this but can't find what I'm after. I have a subform (Continuous Forms view) which does a simple row multiplication based on a value selected from a combo - the multiplication appears in the sub-total column and the calculation is done in the...
  11. PeterDuthie

    UK hourly weekly rate

    Access programming is "not" how I normally make a living but I've been asked to undertake a (3 week) project to set up some databases involving some programming. What would be a reasonable weekly or hourly rate in the UK? I'm a C++ programmer, recently started with access and VBA. I...
  12. PeterDuthie

    record navigation jams when focus is on field with exit programming

    I'm new to access programming so please forgive me if this is a stupid question. I have a form with some fields which do some capitalizing on exit - e.g. Private Sub Address_1_Exit(Cancel As Integer) If Not gCapitalize Then Exit Sub Me![Address 1].Value = StrConv(Me![Address 1].Value...

Part and Inventory Search

Back
Top