I'm importing data from another database. Because of repeating data in columns to the right, the field that identifies that group of data is shown only once, on the first line of that series of data. That group may have 25 records, but the identifier
is only printed on the first line of that group. When a new group data starts, a new identifier is shown in the identifying field, but again only on the first row of that group.
I want to have the identifier value repeat for each row of data that is applicable to it. If this was just a few records, I would happily just copy the rows individually to the empty rows below it for each grouping of data. But we're talking about hundreds
of records, and I'd rather find a more elegant solution.
I'm trying to use a formula to automate a process, but with no success so far. I think what I need is statement like this (psuedo-code):
if(cell is blank or equal to the clipboard, copy and paste the value that's in the clipboard, copy and paste the value of the current cell);
Let me make a sketch, perhaps it will help:
This is what I have:
A B C
1 Red five
2 one
3 nine
4 Green three
5 three
6 twenty
7 Yellow four
8 six
9 twelve
This is what I want:
A B C
1 Red five
2 Red one
3 Red nine
4 Green three
5 Green three
6 Green twenty
7 Yellow four
8 Yellow six
9 Yellow twelve
Thanks for trying :). Sorry if this is confusing. It's confusing to me, too.