Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Formula: How do I create a "rolling" sum in excel?

I have a spreadsheet where I need to have a way in which to capture the
number of statements people agree with - this data is collected from a
seperate document. for example, if five people agree then I want to be able
to be able to hit "1" each time but to have the cell instantly add up how
many I have entered. I am sure there is a method to do this, but I have no
idea what the correct formual would be!

Cheers

Rhianne
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Location: Bakersfield, CA
Posts: 45
Send a message via Skype™ to JBeaucaire[_85_]
Default Formula: How do I create a "rolling" sum in excel?

You don't quite enough info about your sheet. Are you talking about a series
of cells in a row you are putting in 1s as you go across?

A- - - - B - - C - - - D
Name - -Q1 - -Q2 - - Q3
John - - - 1 - - - 0 - - - 1

Something like that?

If so, next I need to know are you wanting the number of 1s for an entire
student (row) or an entire question (column).
=========
If the answer is "student", then out to the right where the questions have
ended, let's say column G is the last question, in H2 enter the formula:
=SUM(B2:G2)

You can copy that down the the H column and each row will total the 1s for
you as you add them.
========
If the answer it "question", then at the bottom of the list of students add
a row called TOTALS. Let's say there are 50 students and the list ends on row
51.

In row 52, enter TOTALS for the name in A52, and in B52, enter the formula:
=SUM(B2:B51)

Copy that formula to the right for the other columns.
--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

I have a spreadsheet where I need to have a way in which to capture the
number of statements people agree with - this data is collected from a
seperate document. for example, if five people agree then I want to be able
to be able to hit "1" each time but to have the cell instantly add up how
many I have entered. I am sure there is a method to do this, but I have no
idea what the correct formual would be!

Cheers

Rhianne

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Formula: How do I create a "rolling" sum in excel?

I think I know what you mean and if I'm right then I have already done that -
I have entered a formula at the end of each section so as to calculate that
section amount. But that is at the END of the section. I want something so as
I'm adding into the one cell the number increases...usually I would simply do
the formula as I went, but I probably won't be the only one using this
spreadsheet so need to have it in place already. Am not sure if this is even
possible!

Thanks for the help though.

"JBeaucaire" wrote:

You don't quite enough info about your sheet. Are you talking about a series
of cells in a row you are putting in 1s as you go across?

A- - - - B - - C - - - D
Name - -Q1 - -Q2 - - Q3
John - - - 1 - - - 0 - - - 1

Something like that?

If so, next I need to know are you wanting the number of 1s for an entire
student (row) or an entire question (column).
=========
If the answer is "student", then out to the right where the questions have
ended, let's say column G is the last question, in H2 enter the formula:
=SUM(B2:G2)

You can copy that down the the H column and each row will total the 1s for
you as you add them.
========
If the answer it "question", then at the bottom of the list of students add
a row called TOTALS. Let's say there are 50 students and the list ends on row
51.

In row 52, enter TOTALS for the name in A52, and in B52, enter the formula:
=SUM(B2:B51)

Copy that formula to the right for the other columns.
--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

I have a spreadsheet where I need to have a way in which to capture the
number of statements people agree with - this data is collected from a
seperate document. for example, if five people agree then I want to be able
to be able to hit "1" each time but to have the cell instantly add up how
many I have entered. I am sure there is a method to do this, but I have no
idea what the correct formual would be!

Cheers

Rhianne

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Location: Bakersfield, CA
Posts: 45
Send a message via Skype™ to JBeaucaire[_85_]
Default Formula: How do I create a "rolling" sum in excel?

Are you talking about typing INTO a cell that already has a value in it, and
having the number you typed simply added to what was there already?

So if A2 had a 1 in it, and you selected the cell and typed a 1 again, when
you press Enter the cell value would become 2?
--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

I think I know what you mean and if I'm right then I have already done that -
I have entered a formula at the end of each section so as to calculate that
section amount. But that is at the END of the section. I want something so as
I'm adding into the one cell the number increases...usually I would simply do
the formula as I went, but I probably won't be the only one using this
spreadsheet so need to have it in place already. Am not sure if this is even
possible!

Thanks for the help though.

"JBeaucaire" wrote:

You don't quite enough info about your sheet. Are you talking about a series
of cells in a row you are putting in 1s as you go across?

A- - - - B - - C - - - D
Name - -Q1 - -Q2 - - Q3
John - - - 1 - - - 0 - - - 1

Something like that?

If so, next I need to know are you wanting the number of 1s for an entire
student (row) or an entire question (column).
=========
If the answer is "student", then out to the right where the questions have
ended, let's say column G is the last question, in H2 enter the formula:
=SUM(B2:G2)

You can copy that down the the H column and each row will total the 1s for
you as you add them.
========
If the answer it "question", then at the bottom of the list of students add
a row called TOTALS. Let's say there are 50 students and the list ends on row
51.

In row 52, enter TOTALS for the name in A52, and in B52, enter the formula:
=SUM(B2:B51)

Copy that formula to the right for the other columns.
--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

I have a spreadsheet where I need to have a way in which to capture the
number of statements people agree with - this data is collected from a
seperate document. for example, if five people agree then I want to be able
to be able to hit "1" each time but to have the cell instantly add up how
many I have entered. I am sure there is a method to do this, but I have no
idea what the correct formual would be!

Cheers

Rhianne

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Formula: How do I create a "rolling" sum in excel?

Yes! Lol. I don't think I explained myself very well in the first post. Is
there a way to do it?

Cheers R.

"JBeaucaire" wrote:

Are you talking about typing INTO a cell that already has a value in it, and
having the number you typed simply added to what was there already?

So if A2 had a 1 in it, and you selected the cell and typed a 1 again, when
you press Enter the cell value would become 2?
--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

I think I know what you mean and if I'm right then I have already done that -
I have entered a formula at the end of each section so as to calculate that
section amount. But that is at the END of the section. I want something so as
I'm adding into the one cell the number increases...usually I would simply do
the formula as I went, but I probably won't be the only one using this
spreadsheet so need to have it in place already. Am not sure if this is even
possible!

Thanks for the help though.

"JBeaucaire" wrote:

You don't quite enough info about your sheet. Are you talking about a series
of cells in a row you are putting in 1s as you go across?

A- - - - B - - C - - - D
Name - -Q1 - -Q2 - - Q3
John - - - 1 - - - 0 - - - 1

Something like that?

If so, next I need to know are you wanting the number of 1s for an entire
student (row) or an entire question (column).
=========
If the answer is "student", then out to the right where the questions have
ended, let's say column G is the last question, in H2 enter the formula:
=SUM(B2:G2)

You can copy that down the the H column and each row will total the 1s for
you as you add them.
========
If the answer it "question", then at the bottom of the list of students add
a row called TOTALS. Let's say there are 50 students and the list ends on row
51.

In row 52, enter TOTALS for the name in A52, and in B52, enter the formula:
=SUM(B2:B51)

Copy that formula to the right for the other columns.
--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

I have a spreadsheet where I need to have a way in which to capture the
number of statements people agree with - this data is collected from a
seperate document. for example, if five people agree then I want to be able
to be able to hit "1" each time but to have the cell instantly add up how
many I have entered. I am sure there is a method to do this, but I have no
idea what the correct formual would be!

Cheers

Rhianne



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Location: Bakersfield, CA
Posts: 45
Send a message via Skype™ to JBeaucaire[_85_]
Default Formula: How do I create a "rolling" sum in excel?

Yes, it can, but I have to stress as strongly as possible that you don't do
this.
This concept (and it's one talked about with some frequency), this concept
has no "history". There's no sense of what came before, when or why? It's a
bit scarey in practice.

First, it has to be done in code. And with most macros, there's no "oops",
no UNDO.

People make mistakes when typing, and if you used a macro that let you type
over one cell with a new value and it added the values together as soon as
you pressed ENTER, what if you mistype? You're staring at a new number and I
PROMISE you won't know remember what was there before.

Remember, no "undo".

Others warn:
http://www.officearticles.com/excel/...soft_excel.htm

Why do you want to do this? How can I convince you to design your sheet
without this feature so the sheet has a sense of history?

-Jerry

--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

Yes! Lol. I don't think I explained myself very well in the first post. Is
there a way to do it?

Cheers R.

"JBeaucaire" wrote:

Are you talking about typing INTO a cell that already has a value in it, and
having the number you typed simply added to what was there already?

So if A2 had a 1 in it, and you selected the cell and typed a 1 again, when
you press Enter the cell value would become 2?
--
"Actually, I AM a rocket scientist." -- JB

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Formula: How do I create a "rolling" sum in excel?

Ahhhh...OK then I will leave it. The data will be required for evaluation and
statistical purposes so I don't want to take chances.

Cheers for the advice it's been a big help.

Rhianne

"JBeaucaire" wrote:

Yes, it can, but I have to stress as strongly as possible that you don't do
this.
This concept (and it's one talked about with some frequency), this concept
has no "history". There's no sense of what came before, when or why? It's a
bit scarey in practice.

First, it has to be done in code. And with most macros, there's no "oops",
no UNDO.

People make mistakes when typing, and if you used a macro that let you type
over one cell with a new value and it added the values together as soon as
you pressed ENTER, what if you mistype? You're staring at a new number and I
PROMISE you won't know remember what was there before.

Remember, no "undo".

Others warn:
http://www.officearticles.com/excel/...soft_excel.htm

Why do you want to do this? How can I convince you to design your sheet
without this feature so the sheet has a sense of history?

-Jerry

--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

Yes! Lol. I don't think I explained myself very well in the first post. Is
there a way to do it?

Cheers R.

"JBeaucaire" wrote:

Are you talking about typing INTO a cell that already has a value in it, and
having the number you typed simply added to what was there already?

So if A2 had a 1 in it, and you selected the cell and typed a 1 again, when
you press Enter the cell value would become 2?
--
"Actually, I AM a rocket scientist." -- JB

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Location: Bakersfield, CA
Posts: 45
Send a message via Skype™ to JBeaucaire[_85_]
Default Formula: How do I create a "rolling" sum in excel?

Great. Don't forget to vote "yes" on the items in this thread that were
useful to you, I appreciate the feedback.

--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

Ahhhh...OK then I will leave it. The data will be required for evaluation and
statistical purposes so I don't want to take chances.

Cheers for the advice it's been a big help.

Rhianne

"JBeaucaire" wrote:

Yes, it can, but I have to stress as strongly as possible that you don't do
this.
This concept (and it's one talked about with some frequency), this concept
has no "history". There's no sense of what came before, when or why? It's a
bit scarey in practice.

First, it has to be done in code. And with most macros, there's no "oops",
no UNDO.

People make mistakes when typing, and if you used a macro that let you type
over one cell with a new value and it added the values together as soon as
you pressed ENTER, what if you mistype? You're staring at a new number and I
PROMISE you won't know remember what was there before.

Remember, no "undo".

Others warn:
http://www.officearticles.com/excel/...soft_excel.htm

Why do you want to do this? How can I convince you to design your sheet
without this feature so the sheet has a sense of history?

-Jerry

--
"Actually, I AM a rocket scientist." -- JB


"Rhianne" wrote:

Yes! Lol. I don't think I explained myself very well in the first post. Is
there a way to do it?

Cheers R.

"JBeaucaire" wrote:

Are you talking about typing INTO a cell that already has a value in it, and
having the number you typed simply added to what was there already?

So if A2 had a 1 in it, and you selected the cell and typed a 1 again, when
you press Enter the cell value would become 2?
--
"Actually, I AM a rocket scientist." -- JB

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Microsoft Excel Formula "IF" to create a timesheet reagolly Excel Worksheet Functions 3 October 1st 08 04:38 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
How to create a scatter chart with 2 "X" values with common "Y"s M_LeDuc Charts and Charting in Excel 2 September 13th 07 10:26 PM
create links to check boxes marked "good" fair"and "bad" pjb Excel Worksheet Functions 3 April 20th 06 02:17 AM
how to create the formula "cumsum" in excel paulc59 Excel Worksheet Functions 5 November 26th 05 02:58 AM


All times are GMT +1. The time now is 06:46 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"