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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sum in Report

Status
Not open for further replies.

bethabernathy

Programmer
Joined
Jul 13, 2001
Messages
254
Location
MX
Hi - I am having a little trouble. I want to put together a calculation in a text box on a report. I want to Sum the value of "pmt_amt" if the value in the field "passstat" = "RFND"

So, I am clearly lost. Any suggestions?

Thanks so much.

Beth beth@integratedresourcemgmt.com
 
In an unbound control in your report's footer or header use the following:

=Sum(IIF([passstat] = "RFND", [pmt_amt], Null))
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top