Search results

  1. L

    Merging cells in excel before importing into access

    Hi guys, is it possible to have VBA code that can merge cells in excel before clicking on the import button? As i would like to merge three cells in my excel file into one cell and when i click on import button on my access form, the imported file will only show as one cell instead of three...
  2. L

    Method or data member not found

    I will try out tomorrow, thank you:)
  3. L

    Method or data member not found

    I have no idea if having two subform on a form is causing the code to prompt me error
  4. L

    Method or data member not found

    Yes, i did.
  5. L

    Method or data member not found

    I tried and i am still facing error
  6. L

    Method or data member not found

    I now face syntax error CurrentDb.Execute "UPDATE mxd" & "SET ID = " & Me.txtID & _ ", GLGPO = " & Me.txtGLGPO & "" & _ ", GLA = " & Me.txtGLA & "" & _ ", StyleNo = " & Me.txtStyleNO & "" & _ ", Content = " & Me.txtContent & "" & _...
  7. L

    Method or data member not found

    Ok, noted. Yes, it does exist
  8. L

    Method or data member not found

    Hi guys, I am facing issue with my code whereby it show me method or data member not found. I check the spelling of my code against my textbox on the form and they are the same! Besides that, I am sure this code is working as i am using the exact code on my another form and it is working! so I...
  9. L

    Only show records that are not added in subform

    Hi guys, I would like to ask if it is possible to show only recordset that are not added into another table in the subform? For example; My subform is link to table 1 with all the details from table 1 but i want to add the data from table 1 to table 2. Besides that, once i save the data...
  10. L

    How to add new record in access table

    Hmm, by adding series number will not help as my excel spreadsheet will import into my access database every morning but i only want the new data to be added into the table that i imported
  11. L

    How to add new record in access table

    Hello guys, I would like to retrieve excel data from a folder from my desktop into my access. My code: Private Sub Command0_Click() Dim filepath As String filepath = "C:\Users\chelsia.koh\Desktop\Unused\Fabrication.xlsx" DoCmd.TransferSpreadsheet acImport, , "ImportFromExcel", filepath, True...
  12. L

    Display "Record added" upon clicking on the save button

    Thankyou! It works!
  13. L

    Display "Record added" upon clicking on the save button

    Hello guys, How do i add a msgbox that display "Record added" when user click on the save button on the form? Thank you!
  14. L

    Display "No records found" on Access Form

    Opps, I am sorry!
  15. L

    Display "No records found" on Access Form

    Thank you! It works~
  16. L

    Display "No records found" on Access Form

    Hi guys, how can i add the code where it will display "No record found,check again" error message when user key in PO number that are not saved in the database? PO: ABC17/123 Thank you guys!
  17. L

    #Type In access form

    I use ADO as at the end of the project, i will be retrieving excel spreadsheet from a local desktop and not from the local table.
  18. L

    #Type In access form

    i have no idea how to continue the code on my display tho
  19. L

    #Type In access form

    Hello peeps, Can you all take a look at my database and tell me where i go wrong? have been stuck with this for a long time
  20. L

    Alignment of text

    Hi, my remarks managed to align yesterday in my report. However when i print preview report, it does not align again :(
Back
Top Bottom