ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   What is the proper syntex for .cells or .range ? (https://www.excelbanter.com/excel-programming/411551-what-proper-syntex-cells-range.html)

cgnotrom

What is the proper syntex for .cells or .range ?
 
Hi All
I am trying to read the array (m1:O1) in a Range command

using a for next loop where 'gm' is the incrementor
For gm =1 to 10

need to convert .Range("M1:O1") to increment .Range(gm,13:gm,15)
or .Cells(gm,13:gm,15)
neither seems to get past the debugger.
Thanks for any guidance !
Chris


Per Jessen[_2_]

What is the proper syntex for .cells or .range ?
 
On 27 Maj, 04:11, cgnotrom wrote:
Hi All
I am trying to read the array (m1:O1) in a Range command

using a for next loop where * 'gm' is the incrementor
For gm =1 to 10

need to convert *.Range("M1:O1") to increment .Range(gm,13:gm,15)
or *.Cells(gm,13:gm,15)
neither seems to get past the debugger.
Thanks for any guidance !
Chris


Hi Chris

Here's a way to do it:

Dim TargetRange As Range
Set TargetRange = Range("M1:O10")

For Each c In TargetRange
MsgBox c.Value
Next

Regards,
Per


All times are GMT +1. The time now is 04:03 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com