
I know the =rept function will repeat a certain number x y number of times, but the numbers are all on the same line, is there any way to get this to repeat on a new line every time?
the picture is just to get a good idea what i’m saying.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can select a range, type a number and hit ctrl+enter and it will fill for you. Is that what you’re looking to do?
VBA
This VBA will take the active cell and copy it down x number of times when x is the cell next to the active cells
If you need it to be inserted 1 less time because the active cell is part of the count, just change it to
For i=1 to (n-1)