Write a formula in the first 10 columns of row 21 in a worksheet that calculates the standard deviation of the values in rows 2 through 20 : Cell Reference « Excel « VBA / Excel / Access / Word

Home
VBA / Excel / Access / Word
1.Access
2.Application
3.Data Type
4.Data Type Functions
5.Date Functions
6.Excel
7.File Path
8.Forms
9.Language Basics
10.Math Functions
11.Outlook
12.PowerPoint
13.String Functions
14.Windows API
15.Word
16.XML
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Excel » Cell Reference 
Write a formula in the first 10 columns of row 21 in a worksheet that calculates the standard deviation of the values in rows 2 through 20
 
Sub formulaDemo()
    Dim As Integer
    For I = To 10
           Cells(21, I).Formula = "=STDEV(" & Chr(I + 64"2:" & Chr(I + 64"20)"
    Next I
End Sub

 
Related examples in the same category
1.A1 Style References
2.The Cells property is best suited for use with loops because it accepts numerical parameters representing the row and column indices in a worksheet
3.Entering A1 Versus R1C1 in VBA
4.R1C1 Style
5.R1C1 Style References
6.Use loop to select cells
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.