Board logo

標題: [分享] (分享)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
請參考以下之程式碼:
  1. Sub Test()
  2.     Dim seasonLineAvg, SeasonLineStDevP As Double
  3.    
  4.     ' =AVERAGE(E2:E62)
  5.     ' =I2+2*STDEVP(E2:E62)
  6.     seasonLineAvg = Application.Average(Range("E2:E62"))
  7.     Sheets("GoldPassbook").Range("I2504").Value = seasonLineAvg
  8.     SeasonLineStDevP = seasonLineAvg + 2 * Application.StDevP(Range("E2:E62"))
  9.     Sheets("GoldPassbook").Range("H2504").Value = SeasonLineStDevP
  10.    
  11.     ' =AVERAGE(E2500:E2560)
  12.     ' =I2500+2*STDEVP(E2500:E2560)
  13.     seasonLineAvg = Application.Average(Range("E2500:E2560"))
  14.     Sheets("GoldPassbook").Range("I2505").Value = seasonLineAvg
  15.     SeasonLineStDevP = seasonLineAvg + 2 * Application.StDevP(Range("E2500:E2560"))
  16.     Sheets("GoldPassbook").Range("H2505").Value = SeasonLineStDevP
  17. End Sub
複製代碼





歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)