I have a spreadsheet with a column that has text, I need it to check to see if another column in the same row has text in it, then fill other cells in the same row but different columns accordingly.
Basically a while loop with a case statement for each check, and the while loop tests if the cell has a value in it before processing, when it reaches the end of the data it stops, there will never be a blank cell before the end of the column.
B2 will be a number(text?) that will change with each sheet, but each time I run the macro it will be using the number from that cell on that sheet, and it's giving me problems.
I know this code isn't exact, but I was doing it at work and I forgot to bring it with me, so this is a basic sketch of what I am working with.
..........A..........B.........C.........D........E.........F..........G
1
2...................90-91
3....................Box.....System
4...................Junct....Transf
5....................Box.....System
To become
............A............B.........C.........D.............E.........F..........G
1
2.....................90-91
3..90-91.Box.....Box...System....Virtual....Place1.....Place2......
4.....................Junct...Transf
5..90-91.Box.....Box...System....Virtual....Place1.....Place2......
It will always start at the same row+column, but it needs to go until it runs out of stuff in the column
Bookmarks