Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Report sum from another table....

Status
Not open for further replies.

soupisgood84

Technical User
Apr 17, 2007
45
0
0
US
Here is the situation....
I have a report that gets data from a query from one table. In the report it displays:
Date, Item Description, Department Name and Price.
The report is divided by department and in the footer I have the Price totaled for each.
In another table I have the projected spending limit for each department.

What I would like the report to do is:
Display the projected amount for each department, subtract the actual amount spent, then give me an amount remaining.

Any ideas......thanks in advance :)
 
Have a look at the DLookUp function.

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
The dlookup function will only return the value that you request, unless I am mistaken.
 
apologies.....I believe that it will work for my purposes.
 
Yes, in the department's footer you request the projected amount for the current department.

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Once requested wouldn't in remain the same?
how would I get it to change for each department?

Code:
This is in the ON OPEN event:

Me.txtBudgeted = DLookup("Hardware", "tblBudget", [qurBudgetUnbound]![Department])

BTW....this code doesn't work.
 
Once requested wouldn't in remain the same?
Did you read my post stamped 13 Jun 07 16:40 ?
this code doesn't work
Feel free to press the F1 key when the cursor is inside the DLookUp word.
 
Put this in the Control Source and it displayed "error":
=DLookUp("Hardware","tblBudget",[Department])
Put this in the Control Source and it only displayed the first row's value:
=DLookUp("Hardware","tblBudget",[qurBudgetUnbound]![Department] )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top