Summation for Statistical Control Chart on Excel

anuneabreu

New Member
Joined
Sep 5, 2022
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
1662370997911.png
How can I do the following formulas on excel... I have a a respective column with values for each of my variables they are all changing. M changes incrementally by 1 and ni and si change with no particular pattern. Thank you ahead of time!
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Is the number of rows with data steady?
(you mentioned m changes by one, but it's i which changes while m is the upper bound for the i variable)

Let's assume it is and your data are always in rows 2:10
Let's assume:
ni is listed in column B,
xi in column C
si in column D
first formula would be:

Excel Formula:
=sumproduct(B2:B10,C2:C10)/SUM(B2:B10)

The second one

Excel Formula:
=(sumproduct((B2:B10-1);D2:D10^2)/(SUM(B2:B10)-9))^0.5

If m isn't constant, probably easiest way is to extend bottom ranges to larger row number than expected maximum number of rows with data
For instance with the second formula being

Excel Formula:
=(sumproduct((B2:B100-1);D2:D100^2)/(SUM(B2:B100)-COUNT(B2:B100)))^0.5
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,932
Members
449,480
Latest member
yesitisasport

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