golfinnut

DANNY LE! WHAT A GUY!
Albatross 2024 Club
Joined
Feb 26, 2014
Messages
22,574
Reaction score
9,094
Location
Leesburg, VA
Handicap
HEAT!
Ok THP ... where are my EXCEL gurus?

I have a question about a few formulas :unsure:
 
What are you trying to do?
 
1680096289155.png

What if I wanted to sum up the even cell numbers in column C? For instance, I want to add C4 + C6 etc = with the result in C20 .... but I want it to be automatic when I put in a cell value in all of the even numbered cells? Make sense? Once I enter another value into cell C20 & C21 it adds all of them up automatically? :unsure:
 
put this formula in c20. SUMPRODUCT(c3:c19,MOD(ROW(c3:c19)+1,2))
 
put this formula in c20. SUMPRODUCT(c3:c19,MOD(ROW(c3:c19)+1,2))
That should work. If not try this:
For odds
=sum(c3:c19*(MOD(ROW(c3:c19),2)=1))

for even
=sum(c3:c19*(MOD(ROW(c3:c19),2)=2))
 
Also if you want you can put that formula at the top of the row or where ever and expand the range to c3:c500 and it will auto sum as you add more data.
 
Ok we have an Excel thread - Yippee.
I actually started using Standard Deviation for the first time as I've gotten Foresight Reports sent to me from PGATSS.
I take out the bad shots are rework the Average and Std Dev.
I was so excited to make that work.
 
Ok we have an Excel thread - Yippee.
I actually started using Standard Deviation for the first time as I've gotten Foresight Reports sent to me from PGATSS.
I take out the bad shots are rework the Average and Std Dev.
I was so excited to make that work.
Want to make it next level? We could treat the data as if it was coming from a process. Once you have 30 data points we can setup a control chart to mathematically point out the outliers. We can also use this to see if you actually fixed something in your swing, ie shifted the process mean.
 
Thanks for the replies guys! I'll try them
 
Now what if I wanted to keep a running average of the even/odd cells as I enter numbers down the column? Sum it as I enter numbers then take the average of all of those?

1680098489031.png
 
Edit to be clear replace the sum with average

=avgerage(what ever formula worked)
 
Want to make it next level? We could treat the data as if it was coming from a process. Once you have 30 data points we can setup a control chart to mathematically point out the outliers. We can also use this to see if you actually fixed something in your swing, ie shifted the process mean.
So is a screen shot of what I get from PGATSS on my swings of off their practice bays.
Here I'm testing two shafts.
I took out the "Flyers" to get it down to 5 shots and reconfigured the Averages and Std. Dev.

1680099099606.png

And I get this:

1680099280419.png


Now if you show me how to get AVG and Std. Dev. on columns "H and I" with the "L" in there, that would be great.
 
=average(h48:h52)
=stdev.s(h48:h52)

then replace h with I and L

for your second shaft it’s h56:h60
 
=average(h48:h52)
=stdev.s(h48:h52)

then replace h with I and L

for your second shaft it’s h56:h60

You can use other stdev functions but your data set is small and this will be the best approximation.
 
Edit to be clear replace the sum with average

=avgerage(what ever formula worked)

But how do I get it to keep adding the columns as I add more data??

=AVERAGE(C3:C23,MOD(ROW(C3:C23)+1,2))

For instance, I add C20 to C24 ... I want it to continuously add as I type new data, so I don't have to manually go back & change the range

1680100341488.png
 
Also if you want you can put that formula at the top of the row or where ever and expand the range to c3:c500 and it will auto sum as you add more data.
But how do I get it to keep adding the columns as I add more data??

=AVERAGE(C3:C23,MOD(ROW(C3:C23)+1,2))

For instance, I add C20 to C24 ... I want it to continuously add as I type new data, so I don't have to manually go back & change the range

View attachment 9167776

=AVERAGE(C3:C500,MOD(ROW(C3:C500)+1,2))

bolded so you can see the changes. Basically just pick and overtly large range and as you input data it will add. If you exceed the 500 push it to 1000 or however much you eventually add.
 
=AVERAGE(C3:C500,MOD(ROW(C3:C500)+1,2))

bolded so you can see the changes. Basically just pick and overtly large range and as you input data it will add. If you exceed the 500 push it to 1000 or however much you eventually add.

Ok I did that ... what did I do wrong? This is what the sum & avg should be

1680101191926.png
 
Can you show the function you inserted?
 
Oppsies forgot that mod would mess with the average you need to modify the formula.

=average(IF(MOD(ROW(c3:c500),2)=0,c3:c500,””))
 
Oppsies forgot that mod would mess with the average you need to modify the formula.

=average(IF(MOD(ROW(c3:c500),2)=0,c3:c500,””))

Now I get "Invalid Name Error"
 
I entered this:

=AVERAGE(IF(MOD(ROW(C3:C500),2)=0,C3:C500,""))

& got 4.13655 :unsure:
 
Note these formulas should only work with the even cells for the odd cells you'll need this:

=SUM(IF(MOD(ROW(C3:C500),2)=1,IF(MOD(C3:C500,2)=1,C3:C500,""),""))

=AVERAGE(IF(MOD(ROW(C3:C500),2)=1,IF(MOD(C3:C500,2)=1,C3:C500,""),""))


Also once you have pasted those in the cells you'll need to hit Ctrl + Shift + Enter at the same time instead of a normal enter
 
I entered this:

=AVERAGE(IF(MOD(ROW(C3:C500),2)=0,C3:C500,""))

& got 4.13655 :unsure:
Okay you cant preselect the cells for average then. It will count them so your sum/count(to 500) will lower the average. It wont affect the sum but it will mess with average. So whatever your last c cell you enter into that will be the final one in the C3:CLast number you enter.
 
Note these formulas should only work with the even cells for the odd cells you'll need this:

=SUM(IF(MOD(ROW(C3:C500),2)=1,IF(MOD(C3:C500,2)=1,C3:C500,""),""))

=AVERAGE(IF(MOD(ROW(C3:C500),2)=1,IF(MOD(C3:C500,2)=1,C3:C500,""),""))


Also once you have pasted those in the cells you'll need to hit Ctrl + Shift + Enter at the same time instead of a normal enter

Does the "=1" or "=2" represent whether it's the ODD or EVEN cell that we are summarizing or averaging?

Which formula for the EVEN?
 
Back
Top