ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Filling Blancks in Columns with the containing of cell. (https://www.excelbanter.com/excel-programming/376716-filling-blancks-columns-containing-cell.html)

Timo Hansen

Filling Blancks in Columns with the containing of cell.
 
Hi I would like to know how I can tell Exel to copy the cell above into the
actual cell if this is empty. If not empty, copy the value in the cell.
ex.

abcde abcde
abcde
fghij fghij
fghij
fghij
hjjkl hjjkl

and so on.


Gary''s Student

Filling Blancks in Columns with the containing of cell.
 
Enter this small macro:

Sub fill_in_the_blanks()
Dim r As Range
For Each r In Selection
If IsEmpty(r.Value) Then
r.Value = r.Offset(-1, 0).Value
End If
Next
End Sub

Then select the part of the column you want fixed.
Then run the macro.
--
Gary''s Student


"Timo Hansen" wrote:

Hi I would like to know how I can tell Exel to copy the cell above into the
actual cell if this is empty. If not empty, copy the value in the cell.
ex.

abcde abcde
abcde
fghij fghij
fghij
fghij
hjjkl hjjkl

and so on.



All times are GMT +1. The time now is 04:48 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com