Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Curious how you get them to recognize them.
Ex. code n = 1 do until n 25 Rows("n:n").select If "ect ect ect" n = n + 1 loop It always highlights the ("n:n")in yellow and wont work properly. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
n = 1
do until n 25 Rows(n).select If "ect ect ect" n = n + 1 loop or as an example using Cells n = 1 do until n 25 Cells(n,1).EntireRow.select If "ect ect ect" n = n + 1 loop -- Regards, Tom Ogilvy "zeraia" wrote in message ... Curious how you get them to recognize them. Ex. code n = 1 do until n 25 Rows("n:n").select If "ect ect ect" n = n + 1 loop It always highlights the ("n:n")in yellow and wont work properly. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying functions without changing most variables in it | Excel Discussion (Misc queries) | |||
How to dealing with functions with 30+ variables? | Excel Worksheet Functions | |||
constructing (complex) variables with worksheet functions | Excel Discussion (Misc queries) | |||
LOGICAL FUNCTIONS WITH MULTIPLE VARIABLES | Excel Worksheet Functions | |||
Can I use variables for workheet name references in Excel functions? | Excel Worksheet Functions |