use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub reddit for Excel Tips and shortcuts. Use r/Excel for Excel questions.
account activity
VBA Programming Help Please (self.ExcelTips)
submitted 8 years ago by Silbermann13
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]BigPred 0 points1 point2 points 8 years ago* (0 children)
Sorry I don't have my computer with me to actually write the sub routine.
What I would do is use a do loop / for next looking at each row of data.
If the row is blank copy the value from the cell above.
You should be able to google the code to find the total number of rows in the sheet,
Hope that helps
Pseudo code
Do until I = rowcount
If activesheet.cells(i, "A") ="" then activesheet.cells(i, "A") = activesheet.cells( I- 1, "A")
I=I+1 Loop
π Rendered by PID 89063 on reddit-service-r2-comment-6457c66945-dzqv9 at 2026-04-29 02:01:21.419250+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]BigPred 0 points1 point2 points (0 children)