range |
| sundar k replied to srinivas reddy at 03-Jul-08 12:00 |
I hope you want to do this in excel vba code, if its so then its pretty straightforward,
Sub test() Dim rng As Range Dim i As Integer Dim j As Integer i = 10 j = 13 Set rng = Sheet1.Range("A" & i & ":C" & j) rng.Select End Sub
|
|