Search results

  1. B

    Limit query results to one instance of a company

    Hi I want any all companies that have a serial number associated with it, but only one instance of each of these companies
  2. B

    Limit query results to one instance of a company

    I have a need to limit the number of times a company comes up in a query result. I have two tables: tblStationData, and tblSerialNumbers I have tried SELECT DISTINCT tblStationData.StationID, tblStationData.[Station Name], tblSerialNumbers.SerialNumber FROM tblStationData INNER JOIN...
  3. B

    Refer to a cell in a table imported fromExcel

    Hi Mark Maybe I did not explain clearly...your solution works fine for that table....I have another table...that requires a similar solution tblESSRates tblESSRates I was trying to change the KG field of the previous example to suit the OriginCountry field here...any thoughts would be...
  4. B

    Refer to a cell in a table imported fromExcel

    Hi Mark I have used your code successfully...What would need to change if the field eg KG was a text field instead of a numerical field?
  5. B

    Refer to a cell in a table imported fromExcel

    I have managed toimport my spreadsheet in to replace your existing table (my table ranges from 0 to 300KG) and your form is working
  6. B

    Refer to a cell in a table imported fromExcel

    Excellent...above my level of VBA but seems to be giving a result for a KG twice that entered eg I enter 4.5 in the Kg box and 2 in the Zone box i get a result of 133.3 which is the number for 9KG?
  7. B

    Refer to a cell in a table imported fromExcel

    Hi MajP, Managed to transpose the spreadsheet OK (learn something every day). In my instance where the user is quoting a possable sale and wishes to enter a product and get a freight cost for that product, do I need the weightstart and weightend? It seems that the requirement is one need at a...
  8. B

    Refer to a cell in a table imported fromExcel

    Thanks for all replies.. see how I go Have to fit this into other requirements
  9. B

    Refer to a cell in a table imported fromExcel

    Thanks Mate, I will wrap my old mind around this (80yrs). seem the solution
  10. B

    Refer to a cell in a table imported fromExcel

    Thanks mate, I will digest this...2.75 is to round up
  11. B

    Refer to a cell in a table imported fromExcel

    I have a table imported from Excel...(Screenshot below) It relates to freight charges and I am required to programme vba to allow the user to enter say 2.5 Kg and Zone 4 and have the answer 109.75. I have no idea so am looking for any ideas which will be much appreciated Thanks Bob KG...
  12. B

    Search subform for a word or phrase

    Hi I have adapted your code to suit, and it works to find the first matching record...how do I get it to move to the next matching record This form is not a subform but one that opens with an ID from the previous form Here is my code: Private Sub cmdSearch_Click() On Error GoTo...
  13. B

    Search subform for a word or phrase

    Not sure what you mean...what search button? Bob
  14. B

    Search subform for a word or phrase

    Thanks mate will work on that approach Bob
  15. B

    Search subform for a word or phrase

    I have a form (frmContactDetailsPower) with a form (frmProgressiveNotesEntryPower) linked by [StationID] from txtStationID. Form frmProgressiveNotesEntryPower is linked to a table (tblProgressiveNotes). I need to be able to search the table (limited by the StationID) for each instance of a...
  16. B

    Introducing myself

    Hi, I am a selftaught access programmer working for my son's company. I am by no means professional
Back
Top Bottom