Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just read the values directly from the Array function...
Dim V As Variant For Each V In Array(4, 10, 19, 27) MsgBox V Next -- Rick (MVP - Excel) "Mike" wrote in message ... Is there a way to write a for next statement for some set numbers. For instance, I want to have a loop to run for x = 4, 10, 19, 27. Thanks, Mike. |