form help (adding up columns)

coreytime

New Member
Joined
Jul 25, 2003
Messages
2
ok heres what im trying to do, im a novice at access, so bare with me. Anyways, I am making a form with a table consisting of the fields (Date,batch #,teller#,batch amount, and item count)...now im wanting to set this up, so i can total up the batch amount and item count totals for the current day, i.e. (7/25)...but there are like 10 different records for each day...can someone please help!
thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Put them in a list box then behind a button put code something like this:
sum=0
for x= 1 to list1.listcount
sum= sum + list1.column(0. list1.listindex)
next x
then assign the sum variable to wherever you want to display the total.
 
Upvote 0
i dont quite understand what you are saying? im new to this sort of thing? Where do i put them ina list box and what/where does that code go? thanks in advance.
Corey
 
Upvote 0

Forum statistics

Threads
1,226,693
Messages
6,192,460
Members
453,725
Latest member
cvsdatreas

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top