Recent content by mark curtis

  1. mark curtis

    Ruuning Total

    Hi there, i'm trying to create a running total in a report for each unique ticket number. attached is a an example of what i would like to do..create a running total in a report that is grouped by incident number. Thanks Mark
  2. mark curtis

    Access Data In Excel

    Hi there, when i copy and paste Access data into Excel, and then want to sum the data it does not "sum up". i have to double click into the data to sort of activate it into life!!! Help please
  3. mark curtis

    Range in VBA to Cell Range

    Hi folks, I hope you can help: In VBA macro i have worked out some ranges that i want and this works fine Set rngNSS = Range("A" & intSRow & ":B" & intNSS - 1 & "") Set rngEast = Range("A" & intNSS & ":B" & intEast - 1 & "") I also have loads of cell calculations on the sheet that...
  4. mark curtis

    Variable to Label

    Hi folks, In code i have built a string variable called strRAG which is a combination of text "Me!lbl" and another variable called intSiteID, which forms for example label name Me!lbl51. I have a form with loads of labels on it and what i want to do is use this string to set the BackColor of...
  5. mark curtis

    string to object

    Hi folks, i have created a string variable called strRAG which is a combination of text "Me!lbl" and another variable called intSiteID, which forms for example lable name Me!lbl51. What i want to do is then use this string to set the BackColor of the label using the below, where lngRAG is...
  6. mark curtis

    SQL String

    thankyou very much
  7. mark curtis

    SQL String

    Hi Folks, i am using the sql below but i am having a little syntax error: i am trying to refer to a variable called strRAGCol strSQL = "SELECT tblSite.SiteID, tblSite.SiteRAG, tblSite.Active " _ & " FROM tblSite " _ & " WHERE (((tblSite.Active)=Yes)AND((tblSite.SiteRAG)=...
  8. mark curtis

    SQL String

    Hi Folks, i am using the sql below but i am having a little syntax error: i am trying to refer to a variable called strRAGCol strSQL = "SELECT tblSite.SiteID, tblSite.SiteRAG, tblSite.Active " _ & " FROM tblSite " _ & " WHERE (((tblSite.Active)=Yes)AND((tblSite.SiteRAG)=...
  9. mark curtis

    Loop Recordset

    Hi folks, I have created a recordset and what i want to do is check the field value "SiteRAG" to see if it matches some criteria and if so do some action where the field "SiteID" = the same as a label on a form. Please see CAPS in middle of code: Dim db As Object Dim rs As Object Dim...
  10. mark curtis

    location map

    thankyou and i now have some ideas
  11. mark curtis

    location map

    Hi folks not being pushy but has anyone got any ideas on my post?? much appreciated.
  12. mark curtis

    location map

    Hi folks, I have 50 locations spread over the UK and each site has a red, amber or green status based on several criteria. What i want to do is have a form with a map of the UK and have each location represented on the map with it's red, amber or green status based on coordinates in the...
  13. mark curtis

    Barn hire booking

    Dear all, Has anyone come across a database where I can store a sports hall bookings by 1/2hr periods, which will also provide daily, weekly an monthly booking printouts. A form like the example would also be great, if not some help with DB structure please? Thanks Mark
  14. mark curtis

    Update Table

    Thanks as usual Pat.
  15. mark curtis

    Update Table

    I have a linked table that holds Change Controls call tblCC. What I want to do is refresh the linked table and then copy all the data in tblCC into tblServices and overwrite any duplicate records thus only adding new ones. My thoughts were to run a delete query to remove all the Change...
Top Bottom