Entering A1 Versus R1C1 in VBA : Cell Reference « Excel « VBA / Excel / Access / Word

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
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Excel » Cell Reference 
Entering A1 Versus R1C1 in VBA
 
Sub A1Style()
    FinalRow = cells(Rows.count, 2).End(xlUp).row
    range("D4").Formula = "=B4*C4"
    range("F4").Formula = "=IF(E4,ROUND(D4*$B$1,2),0)"
    range("G4").Formula = "=F4+D4"
    range("D4").copy Destination:=range("D5:D" & FinalRow)
    range("F4:G4").copy Destination:=range("F5:G" & FinalRow)
    cells(FinalRow + 11).value = "Total"
    cells(FinalRow + 16).Formula = "=SUM(G4:G" & FinalRow & ")"
End Sub

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