Wednesday, 7 December 2016

EXCEL MACRO TO REPLACE EMPTY COLUMN WITH DUMMY VALUE

#### REPLACE A WITH COLUMN LETTER AND j= n WITH ROW TO START  ####

Sub numr()
finalrow = Sheets("Sheet1").Range("A10000").End(xlUp).Row

For j = 2 To finalrow

If Sheets("Sheet1").Range("A" & j).Value = "" Then
                Sheets("Sheet1").Range("A" & j).Value = "BM"
End If

Next j


End Sub 

No comments:

Post a Comment

Git

1 git add ↳ It lets you add changes from the working directory into the staging area 2 git commit ↳ It lets you save a snapshot of currently...