Search results

  1. 109bow

    formatting a cluster column chart

    Good afternoon, I have a cluster column chart in a form that is displaying values below what I would call the x-axis, see photo chart1. This chat is based on a table, see table1 and 2. I wish to not display these values, but so far have not been able to find out to remove them. As a novice I've...
  2. 109bow

    Count number of rows depending on criteria

    Morning guys, With plog's help my previous question has been resolved and I have been able to create the chart I was hoping for. I am now hoping, with some help, to create a table in form "forcast_planning2_form", that gives the number of rows in query "forcast_planning2" that are within a...
  3. 109bow

    Solved filter results in a query

    Good evening all, being a very novice user of Access I'm hoping for some help. I have a query, forcast_planning, which contains multiple rows of data for each number, 01 to 94, in column shortno. What I need is a query that shows two rows for each shortno, 01 to 94, one where Cartype is Motor...
  4. 109bow

    send an email using recipients from a query

    I have a query which I need to email in an excel format to a changing list of recipients. The recipients are held in a query "email_lastturndata_qry" using the field "email_address" for the recipient email addresses. I have this code so far, Private Sub emailpostturndiameters_Click()...
  5. 109bow

    Adding autonumber to a table

    I have two tables, which are joined by a union query. This is then appended to another an other table, called joined_data_tbl. Before appending the data from the union query, I run a delete query to delete all the records from joined_data_tbl, this is because some of the data in the original two...
  6. 109bow

    show whos got an Excel file open

    I have a form that on open checks whether an Excel file on the server is open or not, be fore certain other functions occur. If the file is open I get a message, if the file is not open then the queries run. What I would like is to know who has the Excel file open. Can this be written into the...
  7. 109bow

    Error handling

    Hi All, I have a linked table to an Excel file held on the company server. When I open a specific form, I have a delete query that deletes the contents of my table kmnow_tbl and then I use an Apppend query to update the table kmnow_tbl. The kmnow_tbl stores the current mileage for each train in...
  8. 109bow

    dlookup using multiple criteria

    Hi All, I have a text box in a report that uses DLOOKUP to select a record from a query but I have no idea how this should look, so would like a bit of help. I created below using the expression builder, but not surprisingly it doesn't work and returns #NAME...
  9. 109bow

    difficulty creating a query for many reports

    Hi all, I'm not sure this post is in the right category, but here goes! I'm still getting to grips with Access, so please bear with me. I have form "front page 2" from which I can select 2 numbers from 2 combo boxes. The 2 combo boxes refer to the 2 halves of a train, known as north and south...
  10. 109bow

    Problem using DMax with other criteria

    I have a database that is used to track wheels fitted to trains. each train has 32 wheels. At present I have 32 queries that give me the data for each wheel position in a particular train, I then have a further 32 queries that use the DMax function to return the last record for each wheel in...
  11. 109bow

    enter only even numbers in a combo box

    I have a combo box where users can select from one of a number of even numbers, located in a table. The problem is users can also type a number into the box, they could by mistake enter an odd number, which would return incorrect data. My question is, is it possible to add a clause somewhere in...
  12. 109bow

    Combo box with next 5 sundays

    Hi all, This is a follow up from a post I made some time ago. On a form I have a combo box that gives me the option of selecting from one of the next 5 Sundays; Private Sub Form_Open(Cancel As Integer) Dim I As Integer cboSundays.RowSource = "" For I = 1 To 5 cboSundays.RowSource =...
  13. 109bow

    expecting ID to be added to table

    Evening all, I have a form training_edit_dates1 that allows me to add training types and dates for each operator, which is then saved in operator_training1. When a training type and date is added for a operator I would of thought the field trainingtypeid in operator_training1 would show the id...
  14. 109bow

    Open a hyperlink from a Combo box

    Hi all, I have a database in which I require the users to be able to access risk assessments on the company's server. To do this I have a form risk_assessments, with a combo box. This combo box needs to list the refno and risktype, but not show the actual hyperlink. I have attached a db, with...
  15. 109bow

    Error when closing a form

    I have one form, operator_details, that has a close button, which when clicked on runs code; Private Sub close_Click() Forms!training_record_tableview1.Refresh On Error GoTo HandleError DoCmd.RunCommand acCmdSaveRecord DoCmd.close ObjectType:=acForm, ObjectName:="operator_details"...
  16. 109bow

    Automatically add a field to a form

    Evening all, I have a form "training record tableview1" which at the moment has 2 subforms, which each give details of training for each employee. When a new training type is created, using form "training type" this type is added to the relevant crosstab queries, but I need this new training...
  17. 109bow

    updateable query based on 2 unrelated tables

    Afternoon all, this is a follow up from an earlier post, which I am still struggling with. I have 2 tables which have no common fields, which I need to combine into Query1, from which I can build forms etc. I can't find a way of making Query1 updateable, so I can add [passed on] dates and also...
  18. 109bow

    delete query

    I'm sure i'm doing something very dumb! I'm trying to create a delete query that deletes operators, [op name] and all their records from [train_tbl], when they are ticked as "left team" in the form [operator details]. I have spent all weekend on this, so any assistance would be very, very...
  19. 109bow

    checkbox unticks other checkboxes

    Morning all, I'm sure this has been asked before, but I don't seem to be able to find the thread. I have a form, [operator details] that has 3 checkboxes. I want to checkbox3 to untick checkbox1 and checkbox2. Also checkbox2 to untick checkbox3. Any help would be gratefully received Thanks
  20. 109bow

    password problem

    Hoping someone can help with this one! In an attempt to add security to a database I am building, I have added the file in the attachment to my database, without reading all the replies, now every time I open any Access database on my Pc I am asked for a password, because of this file. Let this...
Back
Top Bottom