Question: Count in Expression

Vu_Ho

Registered User.
Local time
Today, 09:57
Joined
Aug 19, 2013
Messages
20
I want to put an expression that count all Debt in a field named "Payment". What would be an expression for this: =Count([Order].[Payment], "debt")? Thanks a bunch
 
In a form footer? Try

=Sum(IIf(Payment = "Debt", 1, 0))
 

Users who are viewing this thread

Back
Top Bottom