Search results

  1. E

    auto populate table fields

    where to put this formula?? the field is date type
  2. E

    auto populate table fields

    Hi Guys now i am very satisfied with what you guide me to make I noticed that every time i try to insert a revenue to my database in the form i keep entering the invoice date manually!! while its already inserted earlier in the sales table in the revenue form i created a combo box which showing...
  3. E

    auto populate table fields

    actually it's Solved, and as you know access is a huge world of opportunities and every thing can be done in multiple ways i'm new to access and managed to create a great database that do everything i want it to be done, with the help of the GREAT PEOPLE in this forum, so Thank you guys
  4. E

    auto populate table fields

    THANK YOU VERY MUCH it worked great now how to add a refresh code to this VBA, so it refresh the form after each form update
  5. E

    auto populate table fields

    see the attachment
  6. E

    auto populate table fields

    i deleted it right now and working on the VBA way i'll reply later with a screen shot Thak you
  7. E

    auto populate table fields

    what do you mean by control?? the table?? and i know that i should choose either one
  8. E

    auto populate table fields

    is this code right Private Sub Form_AfterUpdate() Private Sub YourControlName_AfterUpdate() Dim strSql As String strSql = "UPDATE Sales INNER JOIN Revenues ON (Sales.[Customer]=Revenues.[Customer]) AND (Sales.[Date]=Revenues.[Invioce Date]) SET Sales.[Paid On] = Revenues.[Payment Date]" WHERE...
  9. E

    auto populate table fields

    sorry would you please tell me where to put this CODE?? should i add in place my code?
  10. E

    auto populate table fields

    i did tried to SetWarnings to No But still the messages showing
  11. E

    auto populate table fields

    This is the code used to make the job done UPDATE Sales INNER JOIN Revenues ON (Sales.[Customer]=Revenues.[Customer]) AND (Sales.[Date]=Revenues.[Invioce Date]) SET Sales.[Paid On] = Revenues.[Payment Date] WHERE Sales.[Paid On] Is Null;
  12. E

    auto populate table fields

    the query opened by macro, and the code is VBA how to add both of them??
  13. E

    auto populate table fields

    i used the SQL statement posted earlier
  14. E

    auto populate table fields

    i made the form of revenue to run the query as an after update, so after each insertion of the payment the sales table updated accordingly, But i keep seeing the warning message. where do you suggest to add the VBA code in order to suppress these messages?
  15. E

    auto populate table fields

    where to put the VBA code to affect this query?
  16. E

    auto populate table fields

    i mean is there an option to turn it off completely for this query only??
  17. E

    auto populate table fields

    how to turn the warning message Off that appear when i run the query??
  18. E

    auto populate table fields

    it worked great Thank you:)
  19. E

    auto populate table fields

    UPDATE Sales INNER JOIN Revenues ON Sales.Customer=Revenues.Customer AND Sales.Date=Revenues.Invioce Date SET Sales.Paid On=Revenues.Payment Date WHERE Sales.Paid On Is Null SELECT Sales.id, Sales.Customer, Sales.Discount, Sales.Quantity, [quantity]*(55.5-[discount]) AS Price, Sales.Date...
  20. E

    auto populate table fields

    i did what you told me and got error message syntax error missing operator in query expression ".
Back
Top Bottom