標題:
[分享]
(分享)excel的標準差公式應用
[打印本頁]
作者:
yagami12th
時間:
2012-1-4 23:45
標題:
(分享)excel的標準差公式應用,以印度指數為例
excel的標準差公式應用,以印度指數為例,資料來源為ptt
附檔如下:
[attach]9068[/attach]
作者:
freeffly
時間:
2012-6-8 14:32
回復
1#
yagami12th
感覺挺不錯的
不過這各好像只有函數沒有程式碼
發在程式區怪怪的
作者:
c_c_lai
時間:
2012-7-29 16:13
回復
2#
freeffly
請參考以下之程式碼:
Sub Test()
Dim seasonLineAvg, SeasonLineStDevP As Double
' =AVERAGE(E2:E62)
' =I2+2*STDEVP(E2:E62)
seasonLineAvg = Application.Average(Range("E2:E62"))
Sheets("GoldPassbook").Range("I2504").Value = seasonLineAvg
SeasonLineStDevP = seasonLineAvg + 2 * Application.StDevP(Range("E2:E62"))
Sheets("GoldPassbook").Range("H2504").Value = SeasonLineStDevP
' =AVERAGE(E2500:E2560)
' =I2500+2*STDEVP(E2500:E2560)
seasonLineAvg = Application.Average(Range("E2500:E2560"))
Sheets("GoldPassbook").Range("I2505").Value = seasonLineAvg
SeasonLineStDevP = seasonLineAvg + 2 * Application.StDevP(Range("E2500:E2560"))
Sheets("GoldPassbook").Range("H2505").Value = SeasonLineStDevP
End Sub
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)