Search results

  1. M

    create inventory in Access

    its same as simple Purchase Less Reserve less Sales nothing complicated
  2. M

    create inventory in Access

    Dear All, Thanks for all the support given. i need to create an Access database where i can do as follow :- Products - can be purchased than make reserved for some project & if required to sale will be deducted from the stock. Current Stock Qty = Purchase - Reserved (too deducted from...
  3. M

    mabino79201

    Required Sub Form Row Selected Product --> Total of Product Qty Purchased - Sales in Main Form from Sub Form
  4. M

    mabino79201

    in a crosstab query based report can we make a filter if the value is Zero or Null, that row will be hide or removed from the report
  5. M

    mabino79201

    on a crosstab query based report can we make a filter if the value is Zero or Null, row will be hide or removed.
  6. M

    mabino79201

  7. M

    mabino79201

    TRANSFORM Sum(qryProductPurchase.SumOfQty) AS SumOfSumOfQty SELECT qryProductPurchase.Product, Sum(qryProductPurchase.SumOfQty) AS [Total Of SumOfQty] FROM qryProductPurchase GROUP BY qryProductPurchase.Product PIVOT qryProductPurchase.TypeofFolio; created CrossTabl Query, if the value is...
  8. M

    mabino79201

    SELECT tblFolio.TypeofFolio, tblProducts.ProductCode, Sum(tblFolio.Qty) AS SumOfQty FROM tblProducts INNER JOIN tblFolio ON tblProducts.ProductsID = tblFolio.Product GROUP BY tblFolio.TypeofFolio, tblProducts.ProductCode; getting the total nos. of, but can you tell me how to make the report for...
  9. M

    mabino79201

    Ok thanks for your suggestion, will do and update
  10. M

    mabino79201

    screenshot relationship, inform if anything required to change
  11. M

    mabino79201

    getting repeated rows duplicate
  12. M

    mabino79201

    adding two query in one but getting duplicate records. SELECT [qryReserveFolio Query].Product, [qryReserveFolio Query].Qty, qrySalesFolio.Qty FROM [qryReserveFolio Query], qrySalesFolio; can anyone help, as its showing duplicate values/ rows
Back
Top Bottom