I have 2 tables.
tbl_DeptBudget
which contains .DeptbudNo, .DeptbudAmt,etc
and
tbl_BudgetDetail
which contains .DeptbudNo, .BudTxAmt,etc
DeptBudget is the main table and DeptbudNo is unique.
however, BudgetDetail can contain same DeptbudNo.
The sum of tbl_BudgetDetail.BudTxAmt is equal to
tbl_DeptBudget.DeptbudAmt.
I need to create a form to add or update BudgetDetail
information and before I do I just want to make sure
that I know what Iam doing.
How can i find records that share same DeptbudNo and sum the budget amount?
ie. BudNo | BudTxAmt
a1 | 20,000
a1 | 10,000
a2 | 23,000
need to return
BudNo | DeptBudAmt
a1 | 30,000
I need update current and upcoming information so Im
guessing update query is the way to go...
I have no clue how this can be done.
Any suggestions?
tbl_DeptBudget
which contains .DeptbudNo, .DeptbudAmt,etc
and
tbl_BudgetDetail
which contains .DeptbudNo, .BudTxAmt,etc
DeptBudget is the main table and DeptbudNo is unique.
however, BudgetDetail can contain same DeptbudNo.
The sum of tbl_BudgetDetail.BudTxAmt is equal to
tbl_DeptBudget.DeptbudAmt.
I need to create a form to add or update BudgetDetail
information and before I do I just want to make sure
that I know what Iam doing.
How can i find records that share same DeptbudNo and sum the budget amount?
ie. BudNo | BudTxAmt
a1 | 20,000
a1 | 10,000
a2 | 23,000
need to return
BudNo | DeptBudAmt
a1 | 30,000
I need update current and upcoming information so Im
guessing update query is the way to go...
I have no clue how this can be done.
Any suggestions?