Sub form totals

  • Thread starter Thread starter peashoe
  • Start date Start date
P

peashoe

I have a sub form within a form that has Team Jacket sizes. How can I
add a total at the bottom on the column. For example: (the name is a
drop down, the sizes are entered manually)

Name Small Medium Large
Team 1 2 0 1
Team 2 3 3 3
Team 3 0 2 1
5 5 5 < -------- how do I get
these to display in the subform?


Thanks in advance
Lisa
 
In the subform footer add textbox for each with record source as
=Sum([YourField)
 
Karl,
I tried adding it at the bottom of the textbox (but it just appeared at
the end of the row) and at the footer it does not appear at all? The
sub form kind of looks like an excel spreadsheet with columns and rows.

~L~


KARL said:
In the subform footer add textbox for each with record source as
=Sum([YourField)

I have a sub form within a form that has Team Jacket sizes. How can I
add a total at the bottom on the column. For example: (the name is a
drop down, the sizes are entered manually)

Name Small Medium Large
Team 1 2 0 1
Team 2 3 3 3
Team 3 0 2 1
5 5 5 < -------- how do I get
these to display in the subform?


Thanks in advance
Lisa
 
Karl,
I tried adding it at the bottom of the textbox (but it just appeared at
the end of the row) and at the footer it does not appear at all? The
sub form kind of looks like an excel spreadsheet with columns and rows.

~L~


KARL said:
In the subform footer add textbox for each with record source as
=Sum([YourField)

I have a sub form within a form that has Team Jacket sizes. How can I
add a total at the bottom on the column. For example: (the name is a
drop down, the sizes are entered manually)

Name Small Medium Large
Team 1 2 0 1
Team 2 3 3 3
Team 3 0 2 1
5 5 5 < -------- how do I get
these to display in the subform?


Thanks in advance
Lisa
 
I tried adding it at the bottom of the textbox
That is not what I said to do.

Add a textbox for each in the subform footer with record source as
=Sum([YourField])
 
but that is what I am saying I tried both - including adding the
textbox in the footer - but it does not appear in the subform at all?

~L~


KARL said:
That is not what I said to do.

Add a textbox for each in the subform footer with record source as
=Sum([YourField])
 
never mind, I found the answer - I needed to change my Default view of
the subform to Continuous form and not Datasheet

Thanks
~L~

but that is what I am saying I tried both - including adding the
textbox in the footer - but it does not appear in the subform at all?

~L~


KARL said:
I tried adding it at the bottom of the textbox
That is not what I said to do.

Add a textbox for each in the subform footer with record source as
=Sum([YourField])
 

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

Back
Top