Free Lessons
Courses
Seminars
TechHelp
Fast Tips
Templates
Topic Index
Forum
ABCD
 
Home   Courses   TechHelp   Forums   Help   Contact   Merch   Join   Order   Logon  
 
Back to Access Forum    Comments List
Upload Images   @Reply   Bookmark    Link   Email   Next Unseen 
Last Invoice Amount
Walter Hamilton 
    
4 years ago
I've been asked to expose the last amount invoiced on our Active Programs Dashboard.  I'm using DSum to calculate the total amount invoiced for each ChargeCode_ID but I'm not sure how to reference the tbl_Invoices to find the last amount invoiced for a given ChargeCode_ID.  I'm on a time crunch for this feature so I haven't started watching videos yet.  If this is simple can somebody assist with the syntax.  If not, please point me to the correct video.  Thanks!
Scott Axton  @Reply  
        
4 years ago
Just use DSum's little brother DMax on the invoice number to find the last one.
Might need to do a DLookup in conjunction with that DMax to get the amount as well.
Alex Hedley  @Reply  
           
4 years ago
SELECT TOP 1 [Amount] FROM tbl_Invoices WHERE ChargeCode_ID=1 ORDER BY [DateField] DESC
Walter Hamilton OP  @Reply  
    
4 years ago
Scott -

I have the following which is returning the highest Invoice No:

=DMax("[Invoice No]","[tbl_Invoices]","[ChargeCode_ID]=" & [ChargeCode_ID])

How would I add DLookup to get the [Amount] from that Invoice No?
Scott Axton  @Reply  
        
4 years ago
Walter -
Just set your DMax result to a variable then use that result for the DLookup.
I would put it in the on current event for your form.

Dim xID as Long

xID = DMax("[Invoice No]","[tbl_Invoices]","[ChargeCode_ID]=" & [ChargeCode_ID])

YourTextbox = DLookup("Amount", "tbl_Invoices", "[Invoice no]=" & xID)


Make sure I got your fields right.
Walter Hamilton OP  @Reply  
    
4 years ago
Scott,

Thank you.  I was able to get everything working.
Richard Rost  @Reply  
          
4 years ago
Walter, when you get a chance, watch this: VLOOKUP in Access. Very similar concepts.

This thread is now CLOSED. If you wish to comment, start a NEW discussion in Access Forum.
 

Next Unseen

 
New Feature: Comment Live View
 
 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2026 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 5/2/2026 6:28:52 AM. PLT: 0s