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 SkipVought 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. kennetha

    Access to Excel by VBA

    Hi all, I would like to transfer an Access query to a workbook template in Excel. Some VBA code appriciated. Thanks in advance Kenneth
  2. kennetha

    Transfer data from table a to b

    Have no idea how to INSERT query with DAO
  3. kennetha

    Transfer data from table a to b

    Hi All, Is it possible to transfer all table data from a table to another by using DAO? All fields are the same for the two tables. Some Vba code appriciated. Thanks Kenneth
  4. kennetha

    dlookup instead of sql

    Thanks you saved my day
  5. kennetha

    dlookup instead of sql

    Thanks PHV, It worked fine and defitely better than opening and closing forms. How can i change "idcode='101z'..." if it is to come from an edit box (txtidcode) in Forms!vv!? If IsNull(DLookUp("idcode", "t", "idcode='" & Forms!vv!txtidcode AND Forms!vv!txty Between dfrom And dto")) then ...
  6. kennetha

    dlookup instead of sql

    Hi all, I have created the below on a form basically to open it hidden, check if there is any data (like if dcount()>0 and then continue or stop the code when necessary. My question. Is there any other way to accoplish the task with a simple Dlookup or an Sql code? Here's the sql; SELECT...
  7. kennetha

    allert when duplicated data is posted

    Thank you ..been of great help
  8. kennetha

    allert when duplicated data is posted

    Straybullet, Cannot do a combo since tool is selected first. ie before posting date periods. Some Vba suggestions appriciated Thanks
  9. kennetha

    allert when duplicated data is posted

    Hi, I'm building a database for a friend of mine who owns a tool hiring shop. I've create tables and forms (all unbounded objects) which update by DAO.I've stuck with a problem and cannot figure it out. Table fields are as follows: clientid; tooolId; datePeriodFrom; PeriodTo How can I allert...
  10. kennetha

    query criteria from a table

    ok thank you
  11. kennetha

    variable headings in a crosstab query

    Not really but unique numbers such as invoice no. thanks anyway
  12. kennetha

    query criteria from a table

    Can you tell me how? plz
  13. kennetha

    query criteria from a table

    Is it possible to make a query criteria from a table.
  14. kennetha

    variable headings in a crosstab query

    dhookhom, The header information comes from a query of which vary on a day to day basis. It is imposible to use the crosstable if you don't modify else from the query itself. Since the program was created for a dummy user no access is given this way. Only forms are used! thanks Kenneth
  15. kennetha

    variable headings in a crosstab query

    Hi all, Is it possible to create a crosstab query were colomn headings vary, ie fields are picked up from a form.(since headings change from day to day). I also, would like to be able to use it in a report. Thanks Kenneth
  16. kennetha

    if none of edit boxes are null

    Thanks for the advise. It worked with a slight code variation and is below: If IsNull(Len(Trim(Me.a1) & Trim(Me.a2) & Trim(Me.a3) & Trim(Me.a4) & Trim(Me.a5))) Then MsgBox "Nothing to Print. " & Chr(10) & Chr(13) & "Please post Picking Numbers in 1,2... ", , pro call...
  17. kennetha

    if none of edit boxes are null

    Hi all, I have five edit boxes in a form which ex a code. I want to stop code if all edit boxes are Null but not if one or more is filled with data. I tried the code below but with no success for obvious reasons- still not know how to proceed. If IsNull(Me.a1) Or IsNull(Me.a2) Or...

Part and Inventory Search

Back
Top