Recent content by Bridiewms

  1. B

    Add New Rows Depending on An Entered Value

    http://www.access-programmers.co.uk/forums/showthread.php?t=256295 This thread solves the issues.
  2. B

    VBA code for Adding Additional Rows to Details

    http://www.access-programmers.co.uk/forums/showthread.php?t=256295 This thread solves the issues.
  3. B

    Do Loop If Statement Not Working

    Hi, Thank you both for your help. I tried the Do...Loop but still no look. I found a very simple solution to my problem. Was making things way too complicated, just needed to step back from it for a while. Instead of unchecking the box as soon as the date expires I have created a report...
  4. B

    Do Loop If Statement Not Working

    I have the following code where on the load of the form which contains over 100 records I want the checkboxes to be set to false if CSCS/Insurance/passport has expired. The reason for this is even though we may enter another expiry date for the furture I want the system to flag up if we haven't...
  5. B

    Cascading Drop Down Box Not Working

    Never mind. managed to sort it. This seemed to work... Me.FormNo.Requery If [FormNo] > 0 Then Me.PPE_Issued.RowSource = "SELECT ID, Item_Name, PPEIssueID FROM QryPPEIssuedDropDown " & _ "WHERE PPEIssueID = FormNo.Value " & _ "ORDER BY...
  6. B

    Cascading Drop Down Box Not Working

    tried adding the additional piece of coding but still not returning anything. Any other ideas?
  7. B

    Cascading Drop Down Box Not Working

    I am trying to set up a cascading drop down box. The default value for the first drop box is 0 which means that no form has been selected. If no form has been selected I want all items of PPE to be listed from the PPE table. If any form number above 0 have been issued this relates to only...
  8. B

    Generate Number of Rows In Report Depending on a Number in Another Field

    Thank you so much. This really clearly things up and gave me another perspective to resolve my issued. In the end I used the table you produced with the numbers and just linked these numbers to the "amount issued" field in a query which produced the required number of rows. This query then...
  9. B

    VBA code for Adding Additional Rows to Details

    I have read up on temporary tables but cannot seem to get an understanding on how to produce the results I want. I have tried docmd. to add new records, I have tried Do Until Loops and tried to research subreport as suggested by another user but am not getting anywhere. Any change you can...
  10. B

    Add New Rows Depending on An Entered Value

    Is there some coding to do this? I have tried several different types of coding but nothing seems to be working. Really struggling to get a resolution to this.
  11. B

    Access backend security

    You can set a password to the back end using the encrypt with password feature on access. This will require uses to input a password before being able to view and tables in the backend. To ensure the front end works after applying the password you will need to relink and update locations for...
  12. B

    Generate Number of Rows In Report Depending on a Number in Another Field

    Hi, I have attached the stripped down database. The tables are usually attached to a back end but for this purpose I have copoed over the required tables. The information has been taken out and 2 records for examples have been entered. There is only one report on the database, this is the...
  13. B

    Add New Rows Depending on An Entered Value

    I have been told my problem may be able to be resolved using a query.... I have a form where we fill in information for supply of PPE to employees. Each item must be signed for on a printed report. I am encountering problems trying to create enough rows for my report detail for each...
  14. B

    Generate Number of Rows In Report Depending on a Number in Another Field

    Had a few views but no responses. Amy reason why? Is what I am trying to achieve possible? Thanks
  15. B

    VBA code for Adding Additional Rows to Details

    I have a form where we fill in information for supply of PPE to employees. Each item must be signed for on a printed report. I am encountering problems trying to create enough rows in my report detail for each signature of the number of items supplied. For example, on the form I will...
Back
Top Bottom