Dsum in Tabbed Form

G

gator

I have a form in Tab form where I want to show a total in the footer of the
Receipt# of the current record. One record may have a distinct number or
several records could have the same receipt number. I'm thinking something
like...

DSUM("Amount","TableName",ReceiptNumber=ReceiptNumber)

ReceiptNumber is a Number format in the table.

Will this work in the tab form?
 
D

Damon Heron

In current event of form-
me.[yourtextbox] = DSUM("Amount", "TableName", "ReceiptNumber = " &
[ReceiptNumber] )

Damon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Jet database engine cannot find a record 3
Replace AutoNumber 6
Varying Number of Columns in Crosstab Query 2
need help with DSUM 3
DSUM in Form 4
Dsum Issues 0
DSum #Error 4
Tabbed form help 1

Top