Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am a new user. I am tried to run a macro -- that does the following
if a column I is empty then Select the string in the column C and place in the column A |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() For i = 1 To Cells(Rows.Count,"I").End(xlUp).Row If Cells(i,"I").Value = "" Then Cells(i,"A").Value = Cells(i,"C").Value End If Next i -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Janett" wrote in message ... I am a new user. I am tried to run a macro -- that does the following if a column I is empty then Select the string in the column C and place in the column A |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks a lot.
"Janett" wrote: I am a new user. I am tried to run a macro -- that does the following if a column I is empty then Select the string in the column C and place in the column A |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Relative cells in macro - and pasting a formula too! | Excel Discussion (Misc queries) | |||
Relative Ranges in excel macro | Excel Discussion (Misc queries) | |||
macro vba relative references | Excel Worksheet Functions | |||
Relative Macro Help on Keystrokes | Excel Discussion (Misc queries) | |||
Record Macro Relative does not work? | Excel Discussion (Misc queries) |