473,399 Members | 2,774 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,399 software developers and data experts.

Struggling with a query

PhilOfWalton
1,430 Expert 1GB
To cut things to the bone I have 3 tables.
TblBoughtSold which lists the date that stock was purchased or sold and, culpa mia, the balance.

Expand|Select|Wrap|Line Numbers
  1. BoughtSold
  2.     BoughtSoldID    Primary Key Autonumber
  3.     InvestmentID
  4.     BoughtSoldDate
  5.     Balance
  6.  
This lists dividends received
Expand|Select|Wrap|Line Numbers
  1. Dividends
  2.     DividendID    'Primary Key Autonumber
  3.     InvestmentID
  4.     DivdDate
  5.     UKInterest
  6.  
This is the stock name
Expand|Select|Wrap|Line Numbers
  1. Investments
  2.     InvestmentID   'Primary Key Autonumber
  3.     SecurityName   'Name of Investment
  4.  
All three tables have the relationships enforced between the InvestmentIDs

As I said it this is the simplified version.

I am trying to establish the Balance of each item of stock on the date the dividend was paid. That is problem no 1.

The second problem is that stock may have been sold and, due to a delay in the dividend payment, it appears that there was no stock at that Dividend Date.

Given the correct balance I should be able to calculate the dividend rate.

This is as close as I have got, but I should be getting 1 line for every dividend received, and I am only getting about 90% of the lines.

Expand|Select|Wrap|Line Numbers
  1. SELECT Dividends.DividendID, Investments.InvestmentID, 
  2. Investments.SecurityName, Dividends.DivDate, Dividends.UKInterest, 
  3. BoughtSold.DateBoughtSold, BoughtSold.Balance, 
  4. IIf([Balance]>0,([UKInterest])/[Balance]) AS DivRate
  5. FROM (Investments INNER JOIN Dividends 
  6. ON Investments.InvestmentID = Dividends.InvestmentID) INNER JOIN BoughtSold 
  7. ON Investments.InvestmentID = BoughtSold.InvestmentID
  8. WHERE (((BoughtSold.DateBoughtSold)=DMax("DateBoughtSold","BoughtSold","InvestmentID = "
  9.  & [Investments]![InvestmentID] & " AND DateBoughtSold <= #" & [DivDate] & "#")))
  10. ORDER BY Investments.InvestmentID, Dividends.DivDate;
  11.  
Any help would be appreciated

Phil
Jul 13 '18 #1
16 1625
zmbd
5,501 Expert Mod 4TB
just on a lark, would it be advisable to add a field to the [BoughtSold] that would link the record to the dividend paid for that inventory?
Expand|Select|Wrap|Line Numbers
  1.  BoughtSold
  2.      BoughtSoldID    Primary Key Autonumber
  3.      InvestmentID    Foreign Key Investments
  4.      fk_Dividends    Foreign Key Dividends
  5.      BoughtSoldDate
  6.      Balance
would this allow you to at least solve your second problem?
Jul 14 '18 #2
PhilOfWalton
1,430 Expert 1GB
Thanks zmbd.

I think you are on the right track, but it needs to be the other way round. The way you have suggested would create a BoughtSold record for each Dividend.

My suggestion is:

Expand|Select|Wrap|Line Numbers
  1. Dividends
  2.     DividendID    'Primary Key Autonumber
  3.     InvestmentID
  4.     DivdDate
  5.     UKInterest
  6.     LastBoughtSoldID     
  7.  
That way the number of records in both tables remains the same, and, if the Balance is zero when the dividend is paid, it should be quite simple to find the previous BoughtSoldID for that Investment.

I will wait to hear whether you agree with my reasoning, before making quite a big change to the Db.

Again, thanks,

Phil
Jul 14 '18 #3
zmbd
5,501 Expert Mod 4TB
Honestly I was guessing here based on a DB that I have tracking some inventory (non-serial numbered consumables).

Maybe if I explain my thought process here it may help you decide how, or even if, my suggestion could work for your DB
[t_supplier]
[t_products]
[t_POnum]
[t_invoice]
[t_inventory]
[t_discount]

- So I was guessing that your [BoughtSold] === [t_invoice].

[t_discount] has the information about the discounts offered by the supplier for quantity discount, special promotions, or other discounts (that gets to be a mess with some of the promotions (@@) )

+ so when I purchase a product [t_invoice].[fk_discount] has the discount for the product purchased, amount, etc... ([t_POnum]->[t_invoice] each line item in the invoice can have a different discount and there are multiple items per purchase order).

So when the items arrive, they get labeled with Date received, who received them and the PO#, [t_inventory] gets a record with the product, amount received (we may order 6 and receive 3 in one go and the other 3 a week later :-( so we can check against [t_invoice].[amtordered] ) , and the po number.

When items are removed [t_inventory] receives a similar entry just the amount received is a negative number

Where this is going is that I can calculate the value of inventory on hand because we may have items from six different PO# that may have different discounts. We can see if the all of items from the oldest PO have been used (some expire!), I can also pull against a supplier over a given time frame an see if we're getting better pricing from them, or compare against another supplier (we multi-source some mission critical items), often over time as some of the product pricing is variable depending on market conditions.

It's one of my earlier databases so it's not very well structured and the SQL is quite the mess (steep learning curve for me then!) but it works and has worked since... 1995ish - originally it was a Lotus-Approach database - V3.0 IIRC-ran on OS Win3.1 in 1994 or 1995 (been too long) - that was fun converting from Approach to Access!
Jul 14 '18 #4
PhilOfWalton
1,430 Expert 1GB
Thanks again, zmbd, but I don' think your second post is that relevant.

I obviously didn't make mkyself as clear as I should have done.
When I mentioned stock, I really meant stocks & shares (Investments). So when a dividend is paid for a particular share, I am trying out how many shares my client owned on that payment date. Hopefully if he buys more shares, and assuming the dividend rate is constant, he would expect to get a proportionally bigger dividend.

We need to work backwards. We know the dividend at a specific date, and when we solve the problem, we know how how many shares he owned, so we can calculate the rate.

Don't forget that he buys and sells shares when he thinks he can make a profit, so there is no pattern in the Balance of shared owned.
Dividends are paid on a more or less regular basis, but I emphasise, more or less.

Hope this clarifies the question

Phil
Jul 14 '18 #5
zmbd
5,501 Expert Mod 4TB
Ok, PhilOfWalton
you really are not making much sense here as it sounds as if you are talking about bounds not stocks. If your talking about bonds then my last post makes much more sense and was what I gathered you were talking about from your post and query.

Usually stock dividends are paid out according to the number of shares owned at the time of pay-out:
So if you own 1000 shares on 1900-02-01 and the dividend announced for the quarter is $0.37(us) you would receive $370(US)
if later you sold 500 shares because the market value increased, sold shorts because of bad new, covered with purchases and increased your holdings to 6000 shares and the quarterly dividend was announced and paid on 1900-05-01 was $0.40(US) would receive $2400(US)

so to keep a nice database of this
[t_Company]
[Company_pk][other company fields]

[t_Dividend]
[Dividend_PK][Company_fk][Dividend_date][Dividend_rate]

[t_Transactions]
[Transactions_PK][Company_FK][Transactions_date][Transaction_amt][Transaction_Price]

I don't think you need a relationship between the two tables [t_Dividend] and [t_Transactions] - you only need to know the amount of shares held at the time the dividend was paid...

+ I'll have to think about this a bit and it's quite late, I was at wedding reception... and I have a few Rum-Cola and a few more glasses of wine on-board so I'm feeling a bit warm and fuzzy :-) - and I got to see one of my friends little girls (known her for almost 20 years - hard to believe - time leaves us so quickly) become a wife - one got past her brothers! Hard to think of her being that old, I still see the little teenager in my mind's eye and in my heart.

But I digress
It would be helpful for you to use standard fiduciary nomenclature

+ Stocks - general term for all shares owned, this is like saying I own shoes.

+ Shares - specific term for ownership certificates of a particular company, this is like saying I have a pair of Nike Flex 2017 Mens Running Shoes and six pairs of Adidas Ultraboost Parley Shoes
>> There can be different classes of shares that pay at different rates; however, these have to be carefully setup to avoid running afoul of Birch v Cropper (1889) 14 App Cas 525

+Bonds - Where as shares are an ownership of company, bonds are a means of financing debt of the company for which the company is willing to pay an interest in consideration of being able to use your money (AKA an loan). At maturity the investor usually gets the principal back along with any interest due (usually the interest is paid quarterly, biannually, or yearly depending on the terms of the bond).
>Bonds purchased at different times could have different yields and that creates a much more interesting tracking for dividend/interest earned.

I have more that basic understanding of stocks, bonds, and commodities. I helped my Mom study for her Series-7, and other FINRA required exams for licensing. She ran her own office for many years and worked for some of the major commodities and securities firms for many decades before retiring.
Jul 15 '18 #6
PhilOfWalton
1,430 Expert 1GB
Ah, the Rum-Cola and wine has made you quite relaxed. Excellent.

You obviously know a lot more about the market than I do, but we are talking English law, not American Law.

OK, the database has entries that go back over 20 years, so it is well established, and works well. So although I have simplified the question, the table names & field names are long established.

The nature if the stocks varies, but that is not relevant. Your second paragraph sums up the situation perfectly, the difference being that on 1st February we received $370, and looking back, we found that we had 1000 shares on that date so we can calculate the rate at 3.7%.
On 4th June we received $2,400 and found that we had held 6000 shares from May 1st, so the rate would be 4%.

I regret holding the Balance of shares (Bought - Sold) in the table. I am always preaching against holding calculated values in a table, but 24 years ago, when this Db was born, I knew even less about Access than I do now. Yes I know that must be hard to believe...

Attached is an Excel example from the database. The black figures are straight from the Db, and the red figures have been put in manually by looking at the balance of shares held prior to the dividend being paid.

We need to find those red values.

Thanks again,

Phil
Jul 15 '18 #7
PhilOfWalton
1,430 Expert 1GB
Ah,in the end I gave up trying to use a query and had to resort to VBA. Fortunately it runs pretty quickly. Using this, we do not even need to change the table designs.

I suspect my SQL is even worse than my VBA

Here's the code if anyone is interested:-

Expand|Select|Wrap|Line Numbers
  1. Function BalAtDate(InvestmentID As Long, DivDate As Date) As Currency
  2. '? BalAtDate(172, #11/04/06#)
  3.     Dim MyDb As Database
  4.     Dim RstBoughtSold As Recordset
  5.     Dim StrSQL As String
  6.     Dim LastDate As Date
  7.     Dim BalanceAtDate As Currency
  8.     Dim PreviousBalanceAtDate As Currency
  9.     Dim StrDivDate As String
  10.  
  11.     StrSQL = "SELECT BoughtSold.* FROM BoughtSold "
  12.     StrSQL = StrSQL & "WHERE InvestmentID = " & InvestmentID
  13.     StrSQL = StrSQL & " Order By DateBoughtSold;"
  14.  
  15.     Set MyDb = CurrentDb
  16.     Set RstBoughtSold = MyDb.OpenRecordset(StrSQL)
  17.  
  18.     StrDivDate = CStr(DivDate)
  19.     With RstBoughtSold
  20.         Do Until .EOF
  21.             If DDiff("d", CStr(!DateBoughtSold), StrDivDate) >= 0 Then  ' DateDiff only works for US Dates
  22.                 Exit Do
  23.             End If
  24.             LastDate = !DateBoughtSold
  25.             BalanceAtDate = !Balance
  26.             If Nz(!Balance) <> 0 Then
  27.                 BalanceAtDate = !Balance
  28.                 PreviousBalanceAtDate = !Balance
  29.             Else
  30.                 BalanceAtDate = PreviousBalanceAtDate
  31.             End If
  32.             .MoveNext
  33.         Loop
  34.         .Close
  35.         Set RstBoughtSold = Nothing
  36.     End With
  37.  
  38.     BalAtDate = BalanceAtDate
  39.  
  40. End Function
  41.  
I might add that I have to use a UDF DDiff() as DateDiff() works with US dates, but not English dates DD/MM/YYYY.

The DDiff function uses information from the windows profile to get information on the local date format, and hopefully is independent so "knows" how to interpret the date that you use.

Thanks for your input

Kind Regards

Phil
Jul 15 '18 #8
NeoPa
32,556 Expert Mod 16PB
PhilOfWalton:
I might add that I have to use a UDF DDiff() as DateDiff() works with US dates, but not English dates DD/MM/YYYY.
DateDiff() works with dates. There are no US or UK dates. There are only US and UK formatted date strings. If you're using date literals in SQL then you should always use a SQL standard date format for them. US dates formats happen to be supported whereas UK date formats certainly are not. Please see Literal DateTimes and Their Delimiters (#). This is not an area where experienced developers from anywhere in Europe should be struggling. Certainly not on Bytes.com where I repeat this point almost weekly.

Moving on. I thought you had a query which produced for you the total stocks/shares held, at a particular date, as well as the dividends paid for those stocks/shares. From there, why is it not simply a case of dividing one by the other for the rate you're after.
Jul 15 '18 #9
PhilOfWalton
1,430 Expert 1GB
I have often run into problems with trying to use DateDiff an UK dates as stored in a table (dd/mm/yyyy)

Certainly using the data in the Excel file and
Expand|Select|Wrap|Line Numbers
  1. If DateDiff("d", !DateBoughtSold, DivDate >= 0 Then
  2. ...
  3.  
interprets the dates as if the were in US format mm/dd/yyyy, and gives the wrong result. So my UDF DDiff seems to give the correct results.

Yes, a simple division is correctly giving me the dividend rate per share.

Bit more fun now as I have a table of share prices recorded at different dates. so my next job is to work out the value of the shares held from the price immediately prior to the dividend date, and see what percentage he is getting.

But that's tomorrow's entertainment

Phil
Jul 15 '18 #10
NeoPa
32,556 Expert Mod 16PB
Again, that's simply a misinterpretation of what's going on. Excel can store dates, and it can also store strings that look like dates. Take any date value in a cell and format it differently - it keeps the same date but shows a different string. The underlying content hasn't changed.

Tables don't store dates as UK dates, or as US dates. They store dates or strings. They may have a format property such that when the value's viewed it appears as a string, but that is not the value itself.

If your data is actually a string then you may see such issues. If it isn't then you won't. I say again, dates are stored as dates. They are never stored as the formatted value except when stored as strings, in which case they aren't really dates.

If you think you have an exception then feel free to call me up to discuss it. I don't want you thinking it's so simply because I say it is. I'm confident it is of course. I just want you to understand the issue fully so you know why it is so.
Jul 15 '18 #11
PhilOfWalton
1,430 Expert 1GB
I am aware that dates are stored as a floating point decimal number (Double) with the integer part the number of days from 30 Dec 1899 and the decimal part as the fraction of a day (hours, minutes & seconds), so the display of a date in a table depends purely on the region & the format.

However, if I want the days difference between January 7th and January 13th, I type in the mug's way in the immediate window

Expand|Select|Wrap|Line Numbers
  1. ? datediff("d", #07/01/18#, #13/01/18#)
  2.  
and get -1990

I have to type in
Expand|Select|Wrap|Line Numbers
  1. ? datediff("d", #01/07/18#, #01/13/18#)
  2.  
to get the correct result of 6.

so given those two dates - January 7th and January 13th, in the form of 07/01/18 and 13/01/18 (apparently) in my table, what is your method of getting DateDiff to work?

Phil
Jul 15 '18 #12
NeoPa
32,556 Expert Mod 16PB
That isn't what those two dates represent. I must admit that I wasn't aware that dates in VBA are region independent. I knew that in SQL they are, but look at the same literal date string in the QBE that you enter in SQL, and you'll see it's been regionalised.

The two dates you represent as #07/01/18# and #13/01/18# are actually 1st July and 13th January. If you want them to be recognised correctly you have to provide a region independent string that is unambiguous. #7 Jan 2018# will work, as will #1/7/2018#, or even #2018\-1\-7#.

Although I guess we none of us use actual date literals in VBA very much, I'm very surprised that is also region independent. I didn't know that before today.
Jul 16 '18 #13
PhilOfWalton
1,430 Expert 1GB
Actually looking again, it is weirder than I thought.
In the immediate window, the code
Expand|Select|Wrap|Line Numbers
  1. ? Datediff("d", #07/01/18#, #13/01/18#)
  2.  
giving -1990 (about 5 years difference) implies it is interpreting it as
Expand|Select|Wrap|Line Numbers
  1. ?Datediff("d",#01 Jul 2018#, #18 Jan 2013#)
  2.  
However
Expand|Select|Wrap|Line Numbers
  1. ?Datediff("d", #07/01/18#, #11/01/18#)
  2.  
gives 123 which is the same as
Expand|Select|Wrap|Line Numbers
  1. ?Datediff("d",#01 Jul 2018#, #01 Nov 2018#)
  2.  
ie here it is interpreting it as standard US Dates.

The following SQL gives the correct results:-

Expand|Select|Wrap|Line Numbers
  1. SELECT TblDatesTest.*, 
  2. [Date2]-[Date1] AS Subtract,
  3. DateDiff("d",[Date2],[Date1]) AS StdDateDiff, 
  4. DDiff("d",[Date2],[Date1]) AS UDFDDiff, 
  5. #1/7/2018#-#1/13/2018# AS FixedSubtract, 
  6. DateDiff("d",#1/7/2018#,#1/13/2018#) AS FixedStdDateDiff, 
  7. DDiff("d",#1/7/2018#,#1/13/2018#) AS FixedUDFDDiff
  8. FROM TblDatesTest;
  9.  



All highly confusing, especially when you think you have entered the same dates in the immediate window as in your table, and get totally unpredictable results.

Phil
Jul 16 '18 #14
Rabbit
12,516 Expert Mod 8TB
Back to the query, the only reasons I can think of for the missing records are either there isn't at least one record in all three tables for each investment ID and/or some of the dividends have no earlier bought sold record.

I would do a distinct count on the dividend id without any joins and then add in a table and filter at a time until I found which caused the records to disappear.
Jul 16 '18 #15
NeoPa
32,556 Expert Mod 16PB
PhilOfWalton:
Actually looking again, it is weirder than I thought.
Yeah. Me too.

I never even entered the dates with two-digit years. I've avoided that for a lot longer than two decades wherever possible. It just doesn't make sense to me to offer myself up to unnecessary problems.

So, it does tell us that date literals in the Immediate Pane are treated unexpectedly. IE. VBA date literals are similar in that respect to those used in SQL. The obvious answer is to determine exactly how they're interpreted. That, or use a format that you know is always unambiguous. Dates are tricky in that if a date can be interpreted in UK format as well as US format then it will choose the latter. However, if either is impossible (EG. US #13/1/2018#.) then it will be treated by using the local format. This is great - except it is singularly responsible for most of the date problems people fall over, because it's so hard to identify.

NB. Please don't overlook Rabbit's post on the main issue that came in before mine..
Jul 16 '18 #16
PhilOfWalton
1,430 Expert 1GB
@ Rabbit

Thanks for suggestion, but in the end, as the query had to be updateable, I had to resort to the VBA solution.

It's a bit slow, but, by limiting the records to a limited date range, just about acceptable.

Phil
Jul 17 '18 #17

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

Similar topics

9
by: wiredog | last post by:
I am struggling rewriting my query from MS Access' IIF, Then to SQL Servers TSQL language. I am hoping some one can give me some guidance. I believe I have the first portion of the query correct...
4
by: Jim | last post by:
Hi I'm looking to take an existing XML document, query for certain nodes, and 'recreate' the document with just the relevant nodes. I'm currently using XPath - I have established the pattern that...
15
by: Richard Hollenbeck | last post by:
I tried to ask this question before on the 14th of January but I never got a reply. I'm still struggling with the problem. I'll try to rephrase the question: I have a crosstab query with rows...
7
by: Regnab | last post by:
I know this has been covered before but being a beginner at SQL, and only marginally better at VBA, I'm struggling. All I wish to do is call the following function which is in "Microsoft Office...
4
by: Chris Tremblay | last post by:
I am trying to figure out how to go about retrieving the number of results returned from my queries in SQL server from VB.NET without using a the Select Count(*) query. The method that I was using...
4
by: Geoff | last post by:
I need to produce a report based on a query. Cost is a calculated field and its value is dependent on another field, in the query, called Session. There are 5 different Session codes each...
3
by: george.lengel | last post by:
Hello experts, I have been struggling for days to solve this problem and every suggestion I find via Google does not work for me. There is probably a solution out there that will do what I want,...
0
by: phlype.johnson | last post by:
I'm struggling to find the best query from performance point of view and readability for a normalized DB design. To illustrate better my question on whether normalized designs lead to more complex...
3
by: DHarris | last post by:
I created a continuous form in Access2003 based on a query that users review customers and once reviewed clicks on a command button that executes an append query to update a table of the reviewed...
3
by: Neil Chinneck | last post by:
Hi everyone, I'm looking for some help please. I have a continuous form, with several fields which can be filtered using combo boxes. Once the user has filtered the form, I want them to enter...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.