Search results

  1. L

    Strings Strings Strings

    Create a table with two fields?
  2. L

    Refresh Problem

    put the code in after update of the text box
  3. L

    How to prevent datatype conversion when importing tables from excel????

    "errors because my primary key "EmployeeNumber" has duplicates." You cannot have have duplicates in primary key. Take off the primary key icon from your Employee Number. What are the steps that you took? When you are importing the data in Access from Excel, it would ask you if you want...
  4. L

    Saving Record From Form

    on open and on current, lock all textboxes on click unlock the textboxes.
  5. L

    How to prevent datatype conversion when importing tables from excel????

    Have you tried exporting it to a ready made Access database structure?
  6. L

    data not matching up

    Wait, is this on a form? Can you attached your mdb?
  7. L

    data not matching up

    build a criteria in your query if field1 <> field2
  8. L

    recordset.open returns no records

    Your join does not generate common data then. there must be common data between the two joins. do a left outer join if you dont care if the second table does not a common data. Ask the clip, what is left outer join query.
  9. L

    Merging columns in table

    Call your table "Table1" then create a query, do not drag a table, edit the sql, paste this. SELECT Table1.Name, Table1.Type, Table1.Quantity, SUMALL.SumOfPrice FROM Table1 LEFT JOIN (SELECT Table1.Name, Sum(Table1.Price) AS SumOfPrice FROM Table1 GROUP BY Table1.Name) as SumALL ON...
  10. L

    Calculations in a query.

    nz function
  11. L

    Merging columns in table

    Name, Quantity, Price, Type AC32, 755.95,13698, LM AC32, 320.89, 1736,EA but I would like it such that, Name, Quantity(LM), SumOf LM+EA, AC32, 755.95, 15434, Create a crosstab query, drag all fields name = group quantity where = lm price = sum
  12. L

    Scan Continous Form for Update

    To refer to a subform's control if you are in the main form. Me!Subform1.Form!ControlName
  13. L

    Access 2003 to 2002 Conversion

    http://support.microsoft.com/default.aspx?scid=kb;en-us;278376
  14. L

    Changing Data Type

    Can you just another number field and update it? If binary value = blah, then update the number to blah.
  15. L

    Locking A Database

    what's your access version?
  16. L

    Syntax error (missing operator) in query expression

    To check syntax, put this into the msgbox first before using it.
  17. L

    My Relationships

    FIrst, your first two tables are incorrectly link. Second, I dont want to go further for fear of going nuts over your "relationship" :)
  18. L

    Really need HELP!

    DoCmd.TransferText acExportDelim, "Standard Output", _ "External Report", "C:\Txtfiles\April.doc" search for Transfer text method
  19. L

    couple of field calculations...

    use nz nz(mynullfield, 0) Sets the value to zero in case your field is null.
  20. L

    Finding averages after every 60 minutes

    IS the data in sequence? Does it have a record ID? What's the access version? HAve you looked at creating the pivot chart form?
Back
Top Bottom