Example
I wish to find the best way to add the following data
to the end of the correct row in the next available empty cell. The problem is each row is a different length
the solution should avoid visual basic and macros.
Thanks for looking.
I wish to find the best way to add the following data
Lookup | Pop |
abc | Pop21 |
def | Pop22 |
ghi | Pop23 |
jkl | Pop24 |
mno | Pop25 |
pqr | Pop26 |
stu | Pop27 |
to the end of the correct row in the next available empty cell. The problem is each row is a different length
Name | Key field | A1 | A2 | A3 | A4 | A5 | A6 |
Red | abc | Pop1 | |||||
White | def | Pop2 | Pop3 | ||||
Blue | ghi | Pop4 | Pop5 | Pop6 | |||
Green | jkl | Pop7 | Pop8 | Pop9 | Pop10 | ||
Orange | mno | Pop11 | Pop12 | Pop13 | Pop14 | Pop15 | |
Purple | pqr | Pop16 | Pop17 | Pop18 | |||
Brown | stu | Pop19 | Pop20 |
Objective | |
place the lookup value in the next available blank cell for each row. Problem is that each row is a different length.
|
Name | Key field | A1 | A2 | A3 | A4 | A5 | A6 |
Red | abc | Pop1 | Pop21 | ||||
White | def | Pop2 | Pop3 | Pop22 | |||
Blue | ghi | Pop4 | Pop5 | Pop6 | Pop23 | ||
Green | jkl | Pop7 | Pop8 | Pop9 | Pop10 | Pop24 | |
Orange | mno | Pop11 | Pop12 | Pop13 | Pop14 | Pop15 | Pop25 |
Purple | pqr | Pop16 | Pop17 | Pop18 | Pop26 | ||
Brown | stu | Pop19 | Pop20 | Pop27 |
the solution should avoid visual basic and macros.
Thanks for looking.