Search results

  1. asteropi

    Not sure what error this is

    I'm free I can call now
  2. asteropi

    Not sure what error this is

    First of, let me say this community is amazing. You have helped me solve one problem after another and really helped me learn, so I'm grateful for that. Now onto the next and hopefully final one. I'm trying to create a list of my products with an add button that will be unconnected from the...
  3. asteropi

    Solved Field Error in Report

    I tried my file with @CarlettoFed and orders 1-2-3 were working fine, but #4 was giving him an error like me. The report opens fine but the ProductSum returns an Error! error. So I don't know how you mean that.
  4. asteropi

    Solved Field Error in Report

    I’m sorry it was like 6am and my laptop run out of juice so I went to bed. There are two ways to solve it: 1) instead of the Dsum, just run a Sum(ProductCost) in the report on the ProductSum field. @CarlettoFed helped me figure this one out 2) instead of running a calculation I just added a...
  5. asteropi

    Solved Field Error in Report

    run order #4. it's retail
  6. asteropi

    Solved Field Error in Report

    I have teamviewer?
  7. asteropi

    Solved Field Error in Report

    Anyway, I just used a =Forms! command to just reference the form instead of recalculating and it worked fine now But what you said is SO WEIRD!
  8. asteropi

    Solved Field Error in Report

    What??? how is that possible???
  9. asteropi

    Solved Syntax Error?

    It worked thank you so much.
  10. asteropi

    Solved Syntax Error?

    scratch that only half solved. It accepts the first If but then skips the 2nd and jumps straight to the ReceiprR report. This is how it is now If Paid = False Then DoCmd.OpenReport "QuotationR", acViewReport ElseIf Paid = True & CustomerType = "Χονδρικής" Then DoCmd.OpenReport...
  11. asteropi

    Solved Field Error in Report

    You want the OrdersF, OrderInvoiceR/QuotationR/ReceiptR (they are basically the same) OrderDetailsQ
  12. asteropi

    Solved Field Error in Report

    I tried doing the calculation in the query but then I get another stupid error So in he query I created a calculated field and had my price draw the if from that field. The single product calculations work fine but the Sum field gets a Name? error Mind you I haven't changed anything else
  13. asteropi

    Solved Field Error in Report

    Because I can't calculate all the retail prices without the VAT. They have to show as they are in their total When I input a new product I give it a wholesale-no-vat price and a total-retail-price, as it is in the website
  14. asteropi

    Solved Syntax Error?

    it was a yes/no field. I know I shouldn't have used the "". They are gone now
  15. asteropi

    Solved Syntax Error?

    worked thank you 😘
  16. asteropi

    Solved Syntax Error?

    for a print invoice button. I wrote it in the vba
  17. asteropi

    Solved Field Error in Report

    I have 3 reports printing for wholesale and retail customers When printing for wholesale everything is fine When printng for customers however, the OrderSum field (using a Dsum command) shows an error, even though the individual costs are all calculated correctly. In the relevant form it shows...
  18. asteropi

    Solved Syntax Error?

    I seem to be blind but I can't find the error here. All it tells me is "Expected: =" but I don't think I'm missing one. Can you please tell me where I'm wrong? IIF("Paid"=False,docmd.OpenReport(QuotationR),IIF("Paid"=True & "AND CustomerType=" & "Χονδρικής"...
  19. asteropi

    Solved Open a filtered query from a Cmd Button

    yeah I saw that. Thank you
  20. asteropi

    Solved Open a filtered query from a Cmd Button

    I saw that and I went into the SQL too and saw you made it distinct. I'm not sure about the language yet but please help me understand Here: SELECT DISTINCT ProductDetailsT.ProductDetailID, OrdersT.CustomerID, ProductDetailsT.SKU, ProductDetailsT.ProductName, OrderDetailsT.DiscountPercent FROM...
Back
Top Bottom