I have a list of names:
- Alice
- Bob
- Caleb...
I want column A in rows 1-10 in Google Spreadsheets to be Alice, 11-20 to be Bob, and so on with the rest of the list.
How can I do this automatically? FLOOR((ROW()-1)/10)
gets me the "index" of the name that I want? How do I access it with the names are located in column L? (Alice is L1, Bob is L2, etc). I can copy all the names by hand, but I am wondering if there is a function to do that?
Basically I want:
1. Alice2. Alice...10. Alice11. Bob...21. Caleb