I am using the following code for assigning a value.
Sheets("CDGL Data").Range("A" & Rows.Count).End(xlUp).Offset(1).Formula= "April"
I need the "April"
to fill down to the rest of my adjacent rows in blank Cells among the Cells that have values in them.
Example:
Cell A899
is blank, Cell B899
has a value, Cell C899
has a value
"April"
needs to be put into that blank cell A899
.
Please help!