473,387 Members | 1,687 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Stock Processing

17
Hi Student2
I am working on similar kind of thing for stock calculation but could not find any solution to my problem even after putting my problem to different forums.
I saw your post that you have solved this problem of stock calculation.
i need help for that too.
I am using vb express and MsAccess as database.
I am trying to write a query for the calculation of Stock.
My tables are as under:
PurchaseTable(PTId, PDate,ItemId, Description, Quantity, Price, Amount)
SalesTable(STId, SDate,ItemId, Description, Quantity, Price, Amount)

I want a query for stockcalculation to show data as under between some date range or at any given date:

ItemId, QuantityPurchased, QuantitySold, Balance(StockQuantity+QuantityPurchased - QuantitySold)

From your thread i grasped some idea that i will have to make a separate table for StockQuantity as opening stock so that it may be added to newstockpurchased.
Please advise me and if you could give me the query you are using with the tables for this issue it will be highly appreciable.
thanks

** Edit **
Split from Ms Access advanced calculation query, stock level? :S
Sep 3 '09 #1

✓ answered by FishVal

Ah, well.

Taking my words back. Just overlooked those zero constants in the bunch of concatenated strings.
Well, if you want to go this way, then you just need to move date checking (between start and end) to those unioned subqueries and add two more subqueries to the union to get records before start for stock opening calculation. This will certainly require to add two more zero constants.

Example of subquery before grouping:
Expand|Select|Wrap|Line Numbers
  1. SELECT Quantity AS PurchasedBefore, 0 AS SoldBefore, 0 AS PurchasedWithin, 0 AS SoldWithin FROM PurchaseTable1 WHERE PDate<@START
  2. UNION ALL
  3. SELECT 0 AS PurchasedBefore, Quantity AS SoldBefore, 0 AS PurchasedWithin, 0 AS SoldWithin FROM SalesTable1 WHERE PDate<@START
  4. UNION ALL
  5. SELECT 0 AS PurchasedBefore, 0 AS SoldBefore, Quantity AS PurchasedWithin, 0 AS SoldWithin FROM PurchaseTable1 WHERE PDate Between @START and @END
  6. UNION ALL
  7. SELECT 0 AS PurchasedBefore, 0 AS SoldBefore, 0 AS PurchasedWithin, Quantity AS SoldWithin FROM SalesTable1 WHERE PDate Between @START and @END
  8.  
But, if you go this way,then why not to allow aggregating to do balance.
Expand|Select|Wrap|Line Numbers
  1. SELECT Quantity AS BalanceBefore, 0 AS BalanceWithin FROM PurchaseTable WHERE PDate<@START
  2. UNION ALL
  3. SELECT -Quantity AS BalanceBefore, 0 AS BalanceWithin FROM SalesTable WHERE PDate<@START
  4. UNION ALL
  5. SELECT 0 AS BalanceBefore, Quantity AS BalanceWithin FROM PurchaseTable WHERE PDate Between @START and @END
  6. UNION ALL
  7. SELECT 0 AS BalanceBefore, -Quantity AS BalanceWithin FROM SalesTablel WHERE PDate Between @START and @END
  8.  

40 7907
Dont forget to account for null values in your calculations
such as:
Expand|Select|Wrap|Line Numbers
  1. NZ(Qty, 0) - NZ(Sold, 0)
Sep 3 '09 #2
sazd1
17
Hi Stevens
Thanks for your reply and guidance.
Infact I need help to write a query for stock calculations as I am using Vb express and MsAccess as database.
I want a query to use in Vb express which will work on the tables and retrieve the balance of stock at any given date.
Please advise.
Sep 3 '09 #3
FishVal
2,653 Expert 2GB
@sazd1
What does "StockQuantity" mean at all. Something beside purchased and sold?
Sep 3 '09 #4
sazd1
17
StockQuantity means the OriginalStock or beginningStock or OpeningBalanceStock. I want that there should be an opening stock which will add up to the StockPurchased and subtracted from StockSold.
Thanks for your reply
Sep 3 '09 #5
FishVal
2,653 Expert 2GB
Is it supposed to be one value per item (a kind of seeding) or, maybe, a single item could have multiple "StockQuantity"'s related to different date.
In other words, could it be so, that "StockQuantity" relevant for a particular item at a particular date is that the latest for this item before that date?
Sep 3 '09 #6
sazd1
17
Hi
Yes you have rightly pointed out that confusion i am having because there should be one opening balance before calculation of stock at any date:
Like if i want to have stock details between 01-09-2009 to 03-09-2009 there should be an opening stock value on 31-08-2009 which will be accounted for the purchases during the period and the sales during the period .
i hope i have been able to clear my point.
Sep 3 '09 #7
FishVal
2,653 Expert 2GB
But in this case opening stock value on 31-08-2009 is just purchases minus sales earlier than 31-08-2009.
Having a table of stock openings you run into a problem of "same data stored in multiple places".
The only reason to do it is to enhance performance while trade-off is that you will need to keep stock openings table consistent to data stored in purchases and sales tables.
Are there that many records in purchases and sales tables?
Sep 3 '09 #8
NeoPa
32,556 Expert Mod 16PB
Sazd1,

You have hijacked somebody-else's thread, so I have split this into its own.

Please make sure not to do so again. If you have a question then please post it in its own thread. References to other threads are permitted where necessary of course, but taking another thread over is not.

Administrator.
Sep 3 '09 #9
sazd1
17
Hi Neopa
Thanks for your correction. I never had any intention to Hijack anyone's thread. I just thought that i may extend the thread to have answer to a similar query of mine.
Anyways thanks so much for your guidance.
Sep 3 '09 #10
sazd1
17
Hi Fishval
I tried something like this to have balance of stock at any date or interval between two dates
Expand|Select|Wrap|Line Numbers
  1. Dim cmdText As String = "SELECT pt.ItemId, pt.Description, SUM(pt.Quantity)AS QuantityPurchased, SUM(st.Quantity) AS QuantitySold, (SUM(pt.Quantity) - SUM(st.Quantity)) AS Balance FROM PurchaseTable pt INNER JOIN SalesTable st ON pt.ItemId=st.ItemId WHERE pt.PDate Between @START and @END GROUP BY pt.ItemId, pt.Description" 
  2.  
  3. If con.State = ConnectionState.Closed Then con.Open() 
  4. Dim cmd As OleDb.OleDbCommand = New OleDb.OleDbCommand(cmdText, con) 
  5. cmd.CommandType = CommandType.Text 
  6.  
  7. cmd.Parameters.AddWithValue("@START", OleDb.OleDbType.Date).Value = TextBox1.Text 
  8. cmd.Parameters.AddWithValue("@END", OleDb.OleDbType.Date).Value = TextBox2.Text 
  9.  
  10. Dim dr As OleDb.OleDbDataReader 
  11.  
  12. If con.State = ConnectionState.Closed Then con.Open() 
  13. dr = cmd.ExecuteReader 
  14. If Not dr.HasRows Then 
  15. MessageBox.Show("No Records Found for Date: " & TextBox1.Text) 
  16. Else 
  17. MessageBox.Show("Record found for Date: " & TextBox1.Text) 
  18. ListView1.Items.Clear() 
  19. ListView1.ForeColor = Color.DarkRed 
  20. ListView1.GridLines = True 
  21.  
  22. While dr.Read 
  23. Dim ls As New ListViewItem(dr.Item("ItemId").ToString()) 
  24. ls.SubItems.Add(dr.Item("Description").ToString()) 
  25. ls.SubItems.Add(dr.Item("QuantityPurchased").ToStr ing()) 
  26. ls.SubItems.Add(dr.Item("QuantitySold").ToString() ) 
  27. ls.SubItems.Add(dr.Item("Balance").ToString()) 
  28. ListView1.Items.Add(ls) 
  29. End While 
  30. End If
But i could not get the desired results. Please advise what i am doing wrong with this.

The problem i am having is as under:
Data in PurchaseTable

PId PDate ItemId Description Price Quantity Amount
1 28/8/2009 1 Coca Cola Normal 1,00 10 10,00
2 28/8/2009 2 Coca Cola Zero 1,00 5 5,00
3 29/8/2009 1 Coca Cola Normal 1,00 5 5,00
4 29/8/2009 2 Coca Cola Zero 1,00 10 10,00

Data in Sales Table is as under:

SId SDate ItemId Description Price Quantity Amount
1 30/8/2009 1 Coca Cola Normal 2,70 2 5,40
2 30/8/2009 2 Coca Cola Zero 2,70 3 7,10
3 31/8/2009 1 Coca Cola Normal 2,70 1 2,70
4 31/8/2009 2 Coca Cola Zero 2,70 2 2,70

The result of query with date range of 28-08-2009 to 29-08-2009 and also with the date range of 28-08-2009 to 31-08-2009 is displayed as under:

Coca Cola Normal 30 6 24
Coca Cola Zero 30 10 20

whereas actually for date range of 28-08-2009 to 29-08-2009 the result should be as under:

Coca Cola Normal 15 0 15
Coca Cola Zero 15 0 15

And with the date range of 28-08-2009 to 31-08-2009 the result should be as under:

Coca Cola Normal 15 3 12
Coca Cola Zero 15 5 10

Pleae advise what i am doing wrong with the query.
Sep 3 '09 #11
NeoPa
32,556 Expert Mod 16PB
@sazd1
I'm sure you did not, but I hope that you understand better now.

Welcome to Bytes!
Sep 3 '09 #12
FishVal
2,653 Expert 2GB
Expand|Select|Wrap|Line Numbers
  1. SELECT 
  2. pt.ItemId, pt.Description, 
  3. SUM(pt.Quantity) AS QuantityPurchased, 
  4. SUM(st.Quantity) AS QuantitySold, 
  5. (SUM(pt.Quantity) - SUM(st.Quantity)) AS Balance 
  6. FROM PurchaseTable pt INNER JOIN SalesTable st 
  7. ON pt.ItemId=st.ItemId 
  8. WHERE pt.PDate Between @START and @END 
  9. GROUP BY pt.ItemId, pt.Description
  10.  
  • Storing both ItemID and Description in those tables is redundant. Do you have something like Items table in your database? If so, then whether [ItemID] field in PurchaseTable and SalesTable tables is FK related to Items table?
  • Joining SalesTable with PurchaseTable is completely wrong since it multiplies (produce all possible combinations) records with the same ItemID (join criteria) thus giving 2*2=4 records of each item which of course results in double sum.
  • Parameters you've used have no influence since they satisfy all records returned by the join because only PurchaseTable date field is checked.
  • PurchaseTable and SalesTable tables have to be aggregated prior to any join. At this point they should be also filtered by relevant date range.
  • Since you need stock opening, you have to make to aggregating queries per table. One aggregating in the dates range and one aggregating before the earliest date in the range.
  • Then you could join all the four queries on ItemID and, voila, you have dataset where each record has unique ItemID and contains all the necessary data to calculate stock balance - quantity purchase and sold before the date range and the same for the date range.

Regards,
Fish.
Sep 3 '09 #13
sazd1
17
Hi FishVal
Thanks for your eloborated reply with guidance to me as a newbee to programming.
My Tables are now as under:
ItemsTable
Expand|Select|Wrap|Line Numbers
  1. ITId    ItemId    Description 
  2. 1    1    Coca Cola Normal 
  3. 2    2    Coca Cola Zero
PurchaseTable
Expand|Select|Wrap|Line Numbers
  1. PId    PDate    ItemId    Price    Quantity    Amount 
  2. 1    28/8/2009    1    1,00    10    10,00 
  3. 2    28/8/2009    2    1,00    5    5,00 
  4. 3    29/8/2009    1    1,00    5    5,00 
  5. 4    29/8/2009    2    1,00    10    10,00 
  6. 5    30/8/2009    1    1,00    10    10,00 
  7. 6    30/8/2009    2    1,00    5    5,00
SalesTable
Expand|Select|Wrap|Line Numbers
  1. SId    SDate    ItemId    Price    Quantity    Amount 
  2. 1    30/8/2009    1    2,70    2    5,40 
  3. 2    30/8/2009    2    2,70    3    7,10 
  4. 3    31/8/2009    1    2,70    1    2,70 
  5. 4    31/8/2009    2    2,70    2    2,70
I tried following query but it gave error "Syntax error in FROM clause"
Expand|Select|Wrap|Line Numbers
  1. Dim cmdText As String = "Select a.ItemId,a.Description,Sum(QuantityPurchased),Sum(QuantitySold), " & _ 
  2. "(Sum(QuantityPurchased) - Sum(QuantitySold)) as Balance " & _ 
  3. "From " & _ 
  4. "( SELECT pt.PDate as TransactionDate, pt.ItemId, pt.Quantity AS QuantityPurchased, " & _ 
  5. "0 AS QuantitySold FROM PurchaseTable pt " & _ 
  6. "UNION ALL " & _ 
  7. "Select st.SDate as TransactionDate, st.ItemId, 0 AS QuantityPurchased, " & _ 
  8. "st.Quantity AS QuantitySold " & _ 
  9. "From SalesTable st ) a " & _ 
  10. "Join ItemsTable i On a.ItemId = i.ItemId " & _ 
  11. "WHERE a.TransactionDate Between @START and @END " & _ 
  12. "GROUP BY a.ItemId, i.Description "
Please correct this query what I am doing wrong with this. And also I will request you to please modify this query to accomodate the OpeningBalance issue. Because the programme has to display StockReport between some date range and definitely it will have to account for the balance available for the items immediate prior to the date range as very rightly advised by you.
Thanks for all your help and guidance.
Sep 4 '09 #14
NeoPa
32,556 Expert Mod 16PB
You seem to be keeping me busy Sazd1.

Please read the notes by your posts where I've had to edit them. Posting code without tags is not allowed. It also makes your posts harder to read, and therefore less likely that people will want to help you.
Sep 4 '09 #15
sazd1
17
Hi NeoPa
Please accept my apologies again.
I will try not to repeat such mistakes in future and I realize that being an expret you have to tackle so many important issues.
Thanks again for your patience to me.
Sep 4 '09 #16
NeoPa
32,556 Expert Mod 16PB
Your polite attitude makes it much easier.

I hope you find all the help you need :)
Sep 4 '09 #17
FishVal
2,653 Expert 2GB
@sazd1
The best way to correct it is totally drop it down.
As I've already said you should perform aggregate query on your tables (to get datasets where each record has distinct ItemID) prior to join.
If you have difficulties with subquery syntax, then try to create sequence of queries in you access backend.

Kind regards,
Fish.
Sep 4 '09 #18
NeoPa
32,556 Expert Mod 16PB
@FishVal
Subqueries in SQL (in case it helps).
Sep 5 '09 #19
sazd1
17
Hi NeoPa
Thanks. Yes i think the topic of Subqueries will definitely help to understand how subqueries work. I will go through it and will let you know of my problems again.
Sep 5 '09 #20
NeoPa
32,556 Expert Mod 16PB
Clearly, you can define QueryDefs and use them as sources in your queries, but it's also possible, using SQL, to include a subquery within your QueryDef. This is explained in more detail in the linked article.

Which approach you proceed with is then down to what you feel most comfortable with.
Sep 5 '09 #21
On the subject of Stock Tracking and Processing, I recently implemented fairly sleek logic that can run off of a SQL Query using Purchase and sales from a single table and also give me the Opening and Closing Stock as of any date, which is quite helpful. The logic can also give you the Opening and Closing stock value on waited average method of Inventory.

I was wondering if anyone can help find the value of Goods based on FIFO (first in first out method)

here is what I am doing:
Table Structure:
TxnDate
StockCode
Action (Purchase or Sale)
Qty
Rate
Lot Quantity on Hand = (On every Sale reduce the LotQOH, to track FIFO)

Opening Stock = SUM(PurchaseQty-SaleQty) Where TxnDate < StartDate

Purchase = Sum(Purchase) where TxnDate Between StartDate and EndDate

Sale = Sum(Sales) where TxnDate Between StartDate and EndDate

Closing Stock = SUM(Purchase-Sale) Where TxnDate < EndDate

On the same lines,
Value of Closing Stock = Total Purchase Cost - Total Cost of Goods Sold
which in SQL terms is

Value of Closing Stock = Sum(Purchase.Qty*Rate) as TPurchaseCost, TPurchaseCost / Sum(Purchase.Qty)*Sum(Sale.Qty)

--This is = Average Cost of Goods on Hand..

The question is HOW To determine FIFO Cost

Sep 11 '09 #22
sazd1
17
Hi Justwandering
thanks for your reply.
Please check following link for FifoStock. This is absolutely amazing you will definitely enjoy that. It calculates the stock on Fifo basis.
** Edit - Illegal Links to Competing forum removed **
I am working in VB express 2008 with MsAccess as database, And i am trying to find out a query for stock calculations as you mentioned in your reply.
Please have a look on that link and as you already have developed stockCalculations it will be more easy for you to implement that because i have never worked in VBA.
And i hope when you will have a go ahead you will share it with us too.
Thanks again.
Sep 11 '09 #23
@sazd1
These links don't work.. Am I missing something ?
Sep 11 '09 #24
sazd1
17
** Edit - Links removed **

Ok try the above site link and there search Fifo Stock developed by Khawar
Sep 11 '09 #25
@sazd1
Looks sensible.. How may I help ?
Sep 11 '09 #26
While the solution demonstrates a method of recording FIFO, it is limited to only show the CURRENT FIFO based stock valuation.

The tables cannot show the FIFO stock balance and Stock FIFO value as of a certain date, which is what I am interested in.

I've already posted the solution to calculate Opening and Closing date as of any date. The first thing and decent inventory management will offer is Stock Position as of a Date, which is not necessarily current.
Sep 11 '09 #27
ChipR
1,287 Expert 1GB
Sorry, but I'm not familiar with FIFO stock tracking. Can you explain how these values that you want are calculated in general? Then we will know whether your data structure supports the calculations.
Sep 11 '09 #28
@ChipR
Due to limited time, I could only point you to an explanation.
http://accountinginfo.com/study/inve...entory-120.htm

Bottom line - I need to display the Cost of Goods on Hand as of any day.
Sep 11 '09 #29
ChipR
1,287 Expert 1GB
Thanks for the link, that explained very nicely.
When you say goods on hand, isn't that the same as ending inventory as of a certain date?
Cost of ending inventory = Beginning inventory + Cost of purchases - Cost of goods sold
Sep 11 '09 #30
@ChipR
yes that's correct..
Sep 11 '09 #31
ChipR
1,287 Expert 1GB
Okay, let me know if I'm off track on any of this.

Beginning inventory - you've figured that out already
Cost of purchases - Sum(Qty*Rate) where action = purchase
Cost of goods sold - Sum(Qty*Rate) where action = sale

These are constrained by date, of course. The only information I can see that you may be missing is the Rate on sales, but shouldn't that be filled in at the time of sale?
Sep 11 '09 #32
sazd1
17
Hi Justwandering
I am trying to add OpeningBalance column in my query. But I am having problem with the
WHERE a.TransactionDate < @START
Please advise where i can put this, because Where clause is used after From clause and i have to use two WHERE clauses one for OPENINGBALANCE and the other for the stock position between two dates. Please go through my query i have highlighted the wrong WHERE clause portion, and advise how to place it in correct position. Thanks

Expand|Select|Wrap|Line Numbers
  1. Dim cmdText As String = "Select a.ItemId,a.Description, " & _
  2.         "(Sum(QuantityPurchased) - Sum(QuantitySold)) As OpeningBalance WHERE a.TransactionDate < @START, " & _
  3.         "Sum(QuantityPurchased) AS QuantityPurchased, " & _
  4.         "Sum(QuantitySold) AS QuantitySold, " & _
  5.         "(Sum(QuantityPurchased) - Sum(QuantitySold)) AS Balance " & _
  6.         "From " & _
  7.         "(" & _
  8.         "SELECT pt.PDate as TransactionDate, pt.ItemId, pt.Description, pt.Quantity AS QuantityPurchased, " & _
  9.         "0 AS QuantitySold FROM PurchaseTable1 pt " & _
  10.         "UNION ALL " & _
  11.         "Select st.SDate as TransactionDate, st.ItemId, st.Description, 0 AS QuantityPurchased, " & _
  12.         "st.Quantity AS QuantitySold From SalesTable1 st " & _
  13.         ") a " & _
  14.         "WHERE a.TransactionDate Between @START and @END " & _
  15.         "GROUP BY a.ItemId, a.Description"
Sep 12 '09 #33
Friends, I am a bit occupied for the next 2 days, but will come back.
Sep 12 '09 #34
FishVal
2,653 Expert 2GB
@sazd1
There is nothing to correct in your query since it is not correct in all points.
If you want to make any calculation in query, then you need to obtain such dataset that calculation arguments appear in the same record. This could be done by first aggregating purchases and sales tables by [ItemID] and then joining thus obtained datasets by equal [ItemID].
On the other hand you may union purchases and sales tables but quantity field in sales table has to be negated to make summing correct.

P.S. It will be better if you break down logic of your task into several sequential steps thus going from one stage to another when one has been completed.
Here is an example of what it could be like:
  • Query returning purchases sum per item till particular date.
  • Query returning sales sum per item till particular date.
  • Join the above two queries to get dataset where each record contains unique itemid, sales sum for this particular item till particular date, purchases sum for this particular item till particular date.
  • Add callculated field to the above query which subtract purchases sum from sales sum. Thus you get dataset which is list of itemid's with correspondent stock openings for the particular date.
  • Congratulate yourself and go further.
  • ??????
  • PROFIT !!!
Sep 12 '09 #35
sazd1
17
Hi Fishval
Thanks for your guidance.
I would like to add here that i tried the following code for calculation of stock balance and it worked so fine giving me the correct results for a date range.
Expand|Select|Wrap|Line Numbers
  1. Dim cmdText As String = "Select a.ItemId,a.Description,Sum(QuantityPurchased) AS QuantityPurchased, " & _
  2.         "Sum(QuantitySold) AS QuantitySold, " & _
  3.         "(Sum(QuantityPurchased) - Sum(QuantitySold)) AS Balance " & _
  4.         "From " & _
  5.         "(" & _
  6.         "SELECT pt.PDate as TransactionDate, pt.ItemId, pt.Description, pt.Quantity AS QuantityPurchased, " & _
  7.         "0 AS QuantitySold FROM PurchaseTable1 pt " & _
  8.         "UNION ALL " & _
  9.         "Select st.SDate as TransactionDate, st.ItemId, st.Description, 0 AS QuantityPurchased, " & _
  10.         "st.Quantity AS QuantitySold From SalesTable1 st " & _
  11.         ") a " & _
  12.         "WHERE a.TransactionDate Between @START and @END " & _
  13.         "GROUP BY a.ItemId, a.Description"
  14. If con.State = ConnectionState.Closed Then con.Open()
  15.         Dim cmd As OleDb.OleDbCommand = New OleDb.OleDbCommand(cmdText, con)
  16.         cmd.CommandType = CommandType.Text
  17.  
  18.         cmd.Parameters.AddWithValue("@START", OleDb.OleDbType.Date).Value = TextBox1.Text
  19.         cmd.Parameters.AddWithValue("@END", OleDb.OleDbType.Date).Value = TextBox2.Text
  20.  
  21.         Dim dr As OleDb.OleDbDataReader
  22.  
  23.         If con.State = ConnectionState.Closed Then con.Open()
  24.         dr = cmd.ExecuteReader
  25.         If Not dr.HasRows Then
  26.             MessageBox.Show("No Records Found for Date: " & TextBox1.Text)
  27.         Else
  28.             MessageBox.Show("Record found for Date: " & TextBox1.Text)
  29.             ListView1.Items.Clear()
  30.             ListView1.ForeColor = Color.DarkRed
  31.             ListView1.GridLines = True
  32.  
  33.             While dr.Read
  34.                 Dim ls As New ListViewItem(dr.Item("ItemId").ToString())
  35.                 ls.SubItems.Add(dr.Item("Description").ToString())
  36.                 ls.SubItems.Add(dr.Item("QuantityPurchased").ToString())
  37.                 ls.SubItems.Add(dr.Item("QuantitySold").ToString())
  38.                 ls.SubItems.Add(dr.Item("Balance").ToString())
  39.                 ListView1.Items.Add(ls)
  40.             End While
  41.         End If
Now I want to add one column of Opening balance so that when user gives a date range the query should calculate the OpeningBalance prior to startDate so that correct balance is displayed.
I am having problem with this column addition in the query.
Justwandering advised me to try something like

Expand|Select|Wrap|Line Numbers
  1. "(Sum(QuantityPurchased) - Sum(QuantitySold)) As OpeningBalance WHERE a.TransactionDate < @START, " 
i am now in a fix to adjust this in the above query.
Please advise how i can add this feature in the above query.
Thanks again for your guidance.
Sep 12 '09 #36
FishVal
2,653 Expert 2GB
Ah, well.

Taking my words back. Just overlooked those zero constants in the bunch of concatenated strings.
Well, if you want to go this way, then you just need to move date checking (between start and end) to those unioned subqueries and add two more subqueries to the union to get records before start for stock opening calculation. This will certainly require to add two more zero constants.

Example of subquery before grouping:
Expand|Select|Wrap|Line Numbers
  1. SELECT Quantity AS PurchasedBefore, 0 AS SoldBefore, 0 AS PurchasedWithin, 0 AS SoldWithin FROM PurchaseTable1 WHERE PDate<@START
  2. UNION ALL
  3. SELECT 0 AS PurchasedBefore, Quantity AS SoldBefore, 0 AS PurchasedWithin, 0 AS SoldWithin FROM SalesTable1 WHERE PDate<@START
  4. UNION ALL
  5. SELECT 0 AS PurchasedBefore, 0 AS SoldBefore, Quantity AS PurchasedWithin, 0 AS SoldWithin FROM PurchaseTable1 WHERE PDate Between @START and @END
  6. UNION ALL
  7. SELECT 0 AS PurchasedBefore, 0 AS SoldBefore, 0 AS PurchasedWithin, Quantity AS SoldWithin FROM SalesTable1 WHERE PDate Between @START and @END
  8.  
But, if you go this way,then why not to allow aggregating to do balance.
Expand|Select|Wrap|Line Numbers
  1. SELECT Quantity AS BalanceBefore, 0 AS BalanceWithin FROM PurchaseTable WHERE PDate<@START
  2. UNION ALL
  3. SELECT -Quantity AS BalanceBefore, 0 AS BalanceWithin FROM SalesTable WHERE PDate<@START
  4. UNION ALL
  5. SELECT 0 AS BalanceBefore, Quantity AS BalanceWithin FROM PurchaseTable WHERE PDate Between @START and @END
  6. UNION ALL
  7. SELECT 0 AS BalanceBefore, -Quantity AS BalanceWithin FROM SalesTablel WHERE PDate Between @START and @END
  8.  
Sep 12 '09 #37
sazd1
17
Hi Fishval
Thanks for your reply. I will try to implement this and will let you know the results. Thanks again.
Sep 14 '09 #38
sazd1
17
Hi Neopa, Fishval & Justwandering.
Thanks to all for giving me suggestions and guidance to solve this issue which was on my head for last couple of months.
I specially want to thank Fishval for guiding me with a query due to which i finally was able to get those so desired results of Stock calculations.
The following query produced the long waited results for me.Any further improvement or alternate of this query will be highly appreciated.
Thanks once again.

Expand|Select|Wrap|Line Numbers
  1. Dim cmdText As String = "Select a.ItemId,a.Description, SUM(PQuantityBefore) AS PQuantityBefore, " & _
  2.         "SUM(SQuantityBefore) AS SQuantityBefore, " & _
  3.         "(Sum(PQuantityBefore) - Sum(SQuantityBefore)) AS BalanceBefore, " & _
  4.         "Sum(QuantityPurchased) AS QuantityPurchased, Sum(QuantitySold) AS QuantitySold, " & _
  5.         "(Sum(PQuantityBefore) - Sum(SQuantityBefore) + Sum(QuantityPurchased) - Sum(QuantitySold)) AS Balance " & _
  6.         "From " & _
  7.         "(" & _
  8.         "SELECT pt.ItemId, pt.Description, pt.Quantity AS PQuantityBefore, " & _
  9.         "0 AS SQuantityBefore, 0 AS QuantityPurchased,0 AS QuantitySold FROM PurchaseTable1 pt " & _
  10.         "WHERE pt.PDate < @START " & _
  11.         "UNION ALL " & _
  12.         "SELECT st.ItemId, st.Description, 0 AS PQuantityBefore, st.Quantity AS SQuantityBefore, " & _
  13.         "0 AS QuantityPurchased,0 AS QuantitySold FROM SalesTable1 st " & _
  14.         "WHERE st.SDate < @START " & _
  15.         "UNION ALL " & _
  16.         "SELECT pt.ItemId, pt.Description, 0 AS PQuantityBefore,0 AS SQuantityBefore, " & _
  17.         "pt.Quantity AS QuantityPurchased, 0 AS QuantitySold FROM PurchaseTable1 pt " & _
  18.         "WHERE pt.PDate Between @START and @END " & _
  19.         "UNION ALL " & _
  20.         "SELECT st.ItemId, st.Description, 0 AS PQuantityBefore,0 AS SQuantityBefore, " & _
  21.         "0 AS QuantityPurchased, st.Quantity AS QuantitySold FROM SalesTable1 st " & _
  22.         "WHERE st.SDate Between @START and @END " & _
  23.         ") a " & _
  24.         "GROUP BY a.ItemId, a.Description"
  25.  
Sep 16 '09 #39
FishVal
2,653 Expert 2GB
You are quite welcome.
Sep 16 '09 #40
@ChipR
Oh well.. It took a while to get here, but I glad that I got the logic now..
based on earlier theories, here's my updated thought:

1. Value of Opening Stock = Value of Total Purchases - (Value of Sales - Profit or Loss), where Date < StartDate

2. Quantity of Opening Stock = Total Quantity Purchased - Total Qty Sold, , where Date < StartDate

3. Purchase Value = Sum of Purchase in amount where date between start and end date.

4. Purchase Qty = Sum of Purchase in Qty where date between start and end date.

5. Sale Value = Sum of Sales in Value where date between start and end date.

6. Sale Qty = Sum of Sales in Qty where date between start and end date.

7. Closing Stock Qty = Sum Purchase Qty - Sum of Sales in Qty where <= end date.

8. Closing Stock Value = Sum of Purchase value - (Total Value of Sales - total Profit or Loss), where Date <= EndDate

Just to add a last point about Cost of Sales : I am calculating P/L for each txn, on a FIFO basis.

Having followed the table structure, I proposed earlier, I am now able to calculate stock on both Average and FIFO method.

THE ICING on the cake is the single sleek query that does the job quite efficiently.

Hope this serves as a good reference point for those in need.
Sep 17 '09 #41

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Marion Slaughter | last post by:
----FA48570F00BB51C Content-Type: text/html; charset="iso-35B2-E" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head>...
7
by: simon | last post by:
Hi I know this has been done to death....but obviously at some point in the dim and distant past! I wish to program a retail database for my shop, I have trawled many forums and I only manage...
6
by: Phreake | last post by:
Hi Guys, I am doing a stock list of Printer tonors, with the following tables Printer_tonor_Stock Tonors Printers ----------------------------- ------------- --------------...
1
by: savvy | last post by:
I am developing a Garments shopping cart. On the single product page where the customer selects size and colour of a garment and if its ok for him, then adds to his basket, so every time he checks...
5
by: kalyxo | last post by:
Hi all! For one of our web-communities we plan an offer of real time stock quotes incl. advanced notification services. I have the following questions: - Do you know of any services, that...
1
by: asmusdk | last post by:
I am working on creating a stock management database for a small company. The company receives the merchandise from a handful of suppliers and stocks it before it is sent to the customers –...
0
by: STOCK TRADING | last post by:
Curious About The First Commercially Available Stock Trading "Robot" Which Earns $346.77 Per Week (Managing $1000 Capital). Have you ever heard of anything like that before? There are just too many...
5
by: Shalini Bhalla | last post by:
i want to make a site on Stock Market for which i need to capture current stock market prices for processing . Can you tell me how i an get that data ?
1
by: Shalini Bhalla | last post by:
i want to make a site which shows stock quotes for analyzing the data.I want to know the best API for nse and bse using which i can get data directly into my data server base for further...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.