I am having trouble finding a way to use a macro to do the following:
I am finding the last populated row of Col A and offsetting one column over to paste a value in Column B. I would like to take that text that was put in Col B and fill up/copy-to all of the empty cells above it, until a non-blank cell.
Each loop inserts a different string in column B, which is why I'm hoping to find a way to paste that string up the row until it hits a non-blank cell,
For example:
A B
Header Header
9/30/14
9/30/14
9/30/14
9/30/14 text1
9/30/14
9/30/14
9/30/14
9/30/14 text2
To look like:
A B
Header Header
9/30/14 text1
9/30/14 text1
9/30/14 text1
9/30/14 text1
9/30/14 text2
9/30/14 text2
9/30/14 text2
9/30/14 text2
Apologies if this is terribly confusing! Any help would be greatly appreciated!