J
Jan Il
Hi all - Access 2002 - Windows ME
I am in hopes that someone can give me a bit of direction on my last step to
complete my project. I have all the tables, queries, forms and such
completed, and I need just one last piece of the puzzle to put it all
together.
I need to calculate a balance amount. Yep, still there. I had tried
everything I can think of, After Update the form, Sum, SubSum, MaybeaSum,
Don'tWantaSum in the form control. Then Balance: Nz, Where, When, Who, If,
Maybe, I Dunno, Lookup, Lookdown, Dlookup, Youlookup ...for criteria in the
query.
This is the very last piece I need, and I have looked at all the Help and
KB's I could think of, but, so far, I've come up with nothing bet errors.
Here is the current SQL of the query for the form I now have:
SELECT MyCheckRegister.CheckNo, MyCheckRegister.CheckDate,
MyCheckRegister.Transaction, MyCheckRegister.CheckAmt,
MyCheckRegister.DepositAmt, Sum([CheckAmt]-[DepositAmt]) AS Balance,
MyCheckRegister.TransactionType, MyCheckRegister.Comment
FROM MyCheckRegister
GROUP BY MyCheckRegister.CheckNo, MyCheckRegister.CheckDate,
MyCheckRegister.Transaction, MyCheckRegister.CheckAmt,
MyCheckRegister.DepositAmt, MyCheckRegister.TransactionType,
MyCheckRegister.Comment
ORDER BY MyCheckRegister.CheckDate;
I realize this is not correct, but, at this point, just not sure where I
need to make the correction.
And, no, this is not just an exercise, it is for actual use. And yes, I do
have good reason to engage in such a project. Let's just say that, the 3rd
time losing all my personal banking info due to a simple upgrade of a very
inexpensive program which can do this task so much easier, but, which is
very poorly supported, is 3 times too many. 'kay. ;-((
I would truly appreciate any suggestions, or perhaps a reference to a
website that would provide information that might address this issue.
Very best regards,
Jan
I am in hopes that someone can give me a bit of direction on my last step to
complete my project. I have all the tables, queries, forms and such
completed, and I need just one last piece of the puzzle to put it all
together.
I need to calculate a balance amount. Yep, still there. I had tried
everything I can think of, After Update the form, Sum, SubSum, MaybeaSum,
Don'tWantaSum in the form control. Then Balance: Nz, Where, When, Who, If,
Maybe, I Dunno, Lookup, Lookdown, Dlookup, Youlookup ...for criteria in the
query.
This is the very last piece I need, and I have looked at all the Help and
KB's I could think of, but, so far, I've come up with nothing bet errors.
Here is the current SQL of the query for the form I now have:
SELECT MyCheckRegister.CheckNo, MyCheckRegister.CheckDate,
MyCheckRegister.Transaction, MyCheckRegister.CheckAmt,
MyCheckRegister.DepositAmt, Sum([CheckAmt]-[DepositAmt]) AS Balance,
MyCheckRegister.TransactionType, MyCheckRegister.Comment
FROM MyCheckRegister
GROUP BY MyCheckRegister.CheckNo, MyCheckRegister.CheckDate,
MyCheckRegister.Transaction, MyCheckRegister.CheckAmt,
MyCheckRegister.DepositAmt, MyCheckRegister.TransactionType,
MyCheckRegister.Comment
ORDER BY MyCheckRegister.CheckDate;
I realize this is not correct, but, at this point, just not sure where I
need to make the correction.
And, no, this is not just an exercise, it is for actual use. And yes, I do
have good reason to engage in such a project. Let's just say that, the 3rd
time losing all my personal banking info due to a simple upgrade of a very
inexpensive program which can do this task so much easier, but, which is
very poorly supported, is 3 times too many. 'kay. ;-((
I would truly appreciate any suggestions, or perhaps a reference to a
website that would provide information that might address this issue.
Very best regards,
Jan