hello dear hope you are good I want to add the total bill amount in the header. How can I do it?

moin555

Member
Local time
Tomorrow, 01:47
Joined
Feb 6, 2025
Messages
72
1741333995496.png
 
Perhaps the same expression that you have used in the Footer would work in the Header

=Sum([BillAmount])
 
Control Source:
Code:
=[Form]![Invoice_Subform]![txtTotalBillAmount]
 
Last edited:
try:

=[CreditInvoices_Subform].[Form]![Text25]
 
I would change the name of Text25 to something that has some meaning E.g. txtInvTotal
 
Code:
=[Form]![CreditInvoices_Subform]![Text25]

and also on Property->Format->Format: Standard
to show the commas.
 
Controls don't have Recalc method, only Forms.
 

Users who are viewing this thread

Back
Top Bottom