Search results

  1. L

    Syntax Error (missing operator) in query expression

    The query returned me results after i remove the where clause. How do i move on from here?
  2. L

    Syntax Error (missing operator) in query expression

    Thanks! I have fixed the error. However, when i run the query, no records is shown on the query
  3. L

    Syntax Error (missing operator) in query expression

    Thanks! After i have added in the . and run again. It prompt me another error"Syntax error (missing operator) in query expression".
  4. L

    Record not save into table after clicking on "Save" button

    WOW! Thanks for sharing!
  5. L

    Syntax Error (missing operator) in query expression

    Hi all, I get the error when i run my query and i have check that i do not miss out any open or close bracket. How can i fix this? SELECT FabricPOqry* From FabricPOqry LEFT JOIN MainTable ON (FabricPOqry.StyleNO = MainTable.StyleNo) AND (FabricPOqry.[GL Lot] = MainTable.GLA) AND (FabricPOqry.PO...
  6. L

    Record not save into table after clicking on "Save" button

    I managed to solved the error message by using nz(textbox). Thank you.
  7. L

    Record not save into table after clicking on "Save" button

    I have solve it already. However, now i am facing issue whereby it show error message "Invalid use of Null" when i click on my edit button. Private Sub cmdModify_Click() 'check whether there is exists data in list If Not (Me.FormMxdSub.Form.Recordset.EOF And...
  8. L

    Record not save into table after clicking on "Save" button

    There is no error message tho. After i click update, the record will be cleared from my form.
  9. L

    Record not save into table after clicking on "Save" button

    The record is still unable to save into my table after i have took out GLGPO in my update statement
  10. L

    Record not save into table after clicking on "Save" button

    Hello everyone, I am facing problem whereby my record is not saved even after i click onto the "Save" button on my access form. May i know what causes this issue? Below is my code: If Me.txtGLGPO.Tag & "" = "" Then 'this is for insert new 'add data to table...
  11. L

    How to prevent two users editing the same record

    Yes, I did. I am now having error with my code. The error shows"Object variable or with block variable not set. Below is my code: 'check whether there is exists data in list If Not (Me.Form1.Form.Recordset.EOF And Me.Form1.Form.Recordset.BOF) Then 'get data to text box control With...
  12. L

    How to prevent two users editing the same record

    Hi, I am using 2007-2016
  13. L

    VBA code to loop through access table

    Omg! Yes, it is madness. As the excel sheet is retrieve from a system which has no primary key, it is very hard on to assign a PK on my database when i import it over to Access.
  14. L

    VBA code to loop through access table

    I tried using this method after my own research, whenever i import data in it will show duplication. How to not have duplication and only import the new data?
  15. L

    VBA code to loop through access table

    I am importing all from excel, as the data is updated every morning thus i will need to import into my access. If the only way is ti delete all records then reimport again, then i will have difficulties on which PO i have done and which PO i have not done.
  16. L

    VBA code to loop through access table

    Yes, the import data is the correct one
  17. L

    VBA code to loop through access table

    Hi,I have attached the sample data above. I have two table. One is sample(import from excel) and the other one is the main table. So basically take the sample table as data that i will be importing from excel and with the insert statement i will put the data from this table into my main table...
  18. L

    VBA code to loop through access table

    All the field might have the possibility that it will be change
  19. L

    VBA code to loop through access table

    Yes, and all this field contains duplicate data
  20. L

    VBA code to loop through access table

    The row that i need from the excel file that is imported into my access and the same row that i need for my main table are: PO, StyleNo, GL Lot, Name, date, Description2, Colour,Fabric Weight,Fabric Cuttable Width,Our Qty,Supplier Qty,GSMBeforeWash,GMS Per SqYD,ModifyDate
Back
Top Bottom