Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sub fillinblanks()
mycol = "L" For i = Cells(Rows.Count, mycol).End(xlUp).Row To 2 Step -1 If Cells(i - 1, mycol) = "" Then Cells(i - 1, mycol).Value = Cells(i, mycol) End If Next i End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Jim May" wrote in message ... I need a procedure that will start with say cell L300 (which has a text value) and Copy it into cells L299-L250 that are blank; L249 has a different Cell value and I need to copy it into cells L248-L150 that are blank, etc until Row 2. How would I do that? Do while.. Loop but I can't solve... Any help appreciated |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to make a blank cell to automatically copy what is above | Excel Discussion (Misc queries) | |||
Copy data in one cell to blank cell immediately below, repeat | Excel Worksheet Functions | |||
HOW DO I COPY THE LAST NON BLANK CELL IN A COLUMN | Excel Worksheet Functions | |||
Excel VB-Copy formula down until adjacent cell (left) is blank? | Excel Discussion (Misc queries) | |||
COPY A CONCATENATE CELL TO BLANK CELL PUTTING IN THE NEXT BLANK C. | Excel Discussion (Misc queries) |