Recent content by kyle18

  1. K

    Add values to releted table with VBA.

    Basically I have a field [LimPrice] in [tblAcqDetail] I need to calculate it by adding to a field[acqPrice] cost of transport which is calculated in [tblAcq] by (transport divided by cost of shipment). But I don't understand how. Because transport cost is calculated once for whole shipment but...
  2. K

    Add values to releted table with VBA.

    Hi there, Tried to search, but no luck. Not easy to find such question. I have two related tables. (related with AcqID) tblAcq and tblAcqDetail In tblAcq I have information about the delivery and in tblAcqDetail delivered articles, price and quantity. tblAcq [AcqID] ; [Contractor]...
  3. K

    Help with Indexes and Duplicates!

    I found it.. Thanks for reply, sometimes it is one word which makes the difference!!
  4. K

    Help with Indexes and Duplicates!

    Can you be more specific at how you make it? Thanks!
  5. K

    Help with Indexes and Duplicates!

    Hi to everyone! Have simple(as I think) question! Simply I can't find correct answer on the forum, have searched, but don't understand. I have two related Tables tblClientOrder ClientOrder ID(no duplicates); OrderDate; OrderType; Contractor tblClientOrderDetail ClientOrderDetailID...
  6. K

    Update Query with multiple criterias!

    The reason why I am using Append query is because I am not really experience SQL and its functions. How would I use SELECT?
  7. K

    Update Query with multiple criterias!

    Hi everyone, I need help with one very simply update query which I need to run. I have made a simple update query with one criteria: It works great. UPDATE tblArticle INNER JOIN qrsLimPriceNEW ON tblArticle.ArticleID = qrsLimPriceNEW.ArticleID SET tblArticle.PriceROZCoef = 4 WHERE...
  8. K

    Need help with Queries

    Thanks for help, Your hits gave me a clue where to look, so I did Append Query: INSERT INTO tblPrice (ArticleID) SELECT tblArticle.ArticleID FROM tblArticle LEFT JOIN tblPrice On tblArticle.ArticleID = tblPrice.ArticleID WHERE (((tblPrice.ArticleID) is Null)); Works like charm. Thanks for...
  9. K

    Need help with Queries

    Hi, to everyone. I am new in forum, but hope that I can find so needed help hear. I relatively new to the Access, but until know managed to create quite a useful database. Basically it is a Price list which contains information about goods which my company is buying/selling: (Code, Description...
Back
Top Bottom