G
gljones3
I am generating a running sum of Shares for an investment tracking
database in a query as follows: (SELECT Sum([Shares]) FROM
[Transactions] AS [Transactions_1] WHERE [Transactions_1].[Period#] <=
[Transactions].[Period#] AND [Transactions_1].[Security] =
[Transactions].[Security]). The problem is each time I run it, I get a
different number of records, even though I'm not making any changes to
the query or the data. It seems to randomly drop 1, 2, 3, or more
records each time. Some times it will be right, but it seems random.
Any Ideas? Thanks for the help.
Greg
database in a query as follows: (SELECT Sum([Shares]) FROM
[Transactions] AS [Transactions_1] WHERE [Transactions_1].[Period#] <=
[Transactions].[Period#] AND [Transactions_1].[Security] =
[Transactions].[Security]). The problem is each time I run it, I get a
different number of records, even though I'm not making any changes to
the query or the data. It seems to randomly drop 1, 2, 3, or more
records each time. Some times it will be right, but it seems random.
Any Ideas? Thanks for the help.
Greg