Cells Method
Back to Index | Table of Contents
|
To enter the the value 100 into Range("B2"), the code below will do the trick... ActiveSheet.Cells(2,2).Value = 100 We can also reference a specific cell in a Range object by using the code below...Here the value 100 is enter into Range("C4") Set MyRange = Range("C3:C10") MyRange.Cells(2).Value = 100
|
WidgetBucks - Trend Watch - WidgetBucks.com |