Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to select cells in a row that are not contiguous. Example
in row 15 i want select C, E, J, I, and K. I used the record macro function to get Range("C15,E15,G15,I15,K15").Select but it will not always be row 15. I am adding rows to a spreadsheet via a custom written macro and I am trying to select the different cells to format them. Thank you for any help, Louis Markham |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way
Range("C" & i & ",E" & i & ",G" & i & ",I" & i & ",K" & i).Select where i has your row number Tim wrote in message oups.com... I am trying to select cells in a row that are not contiguous. Example in row 15 i want select C, E, J, I, and K. I used the record macro function to get Range("C15,E15,G15,I15,K15").Select but it will not always be row 15. I am adding rows to a spreadsheet via a custom written macro and I am trying to select the different cells to format them. Thank you for any help, Louis Markham |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks a ton!!!!!
M Tim Williams wrote: One way Range("C" & i & ",E" & i & ",G" & i & ",I" & i & ",K" & i).Select where i has your row number Tim wrote in message oups.com... I am trying to select cells in a row that are not contiguous. Example in row 15 i want select C, E, J, I, and K. I used the record macro function to get Range("C15,E15,G15,I15,K15").Select but it will not always be row 15. I am adding rows to a spreadsheet via a custom written macro and I am trying to select the different cells to format them. Thank you for any help, Louis Markham |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I reference multiple cells? | Excel Discussion (Misc queries) | |||
Multiple cells reference | Excel Worksheet Functions | |||
Populate multiple cells using the same reference | Excel Worksheet Functions | |||
Reference multiple cells in if statement | Excel Worksheet Functions | |||
Reference multiple cells | Excel Programming |