Hi there,
I have tried searching for a solution but to no avail. I am working on a query to determine the difference between the value of a mutual funds on a certain date compared to its previous day, in the past month and year-to-date.
We were trying this query for the 1-day change : (SELECT TheTime, TheNAV, TheNAV) - (SELECT Top TheNAV From tblFundsNAV WHERE T.TheTime < tblFundsNAV.TheTime ORDER BY TheTime Desc)
The query, however, did not work.
Thank you
I have tried searching for a solution but to no avail. I am working on a query to determine the difference between the value of a mutual funds on a certain date compared to its previous day, in the past month and year-to-date.
We were trying this query for the 1-day change : (SELECT TheTime, TheNAV, TheNAV) - (SELECT Top TheNAV From tblFundsNAV WHERE T.TheTime < tblFundsNAV.TheTime ORDER BY TheTime Desc)
The query, however, did not work.
Thank you