Hi,
I have a macro that starts with an inputbox. It asks "how many samples would you like to add?" From the value that is input, I would like to copy a range of rows (that is already on my template) and paste as many times as the inputbox value states .
My Macro has started as
InputNum= Val(InputBox("How many more samples would you like to add?"))
If InputNum = 0 Then Exit Sub
If InputNum >0 Then ................... < this is where I dont know what to write.
Let me know if this needs clarification. Any help would be appreciated.
I have a macro that starts with an inputbox. It asks "how many samples would you like to add?" From the value that is input, I would like to copy a range of rows (that is already on my template) and paste as many times as the inputbox value states .
My Macro has started as
InputNum= Val(InputBox("How many more samples would you like to add?"))
If InputNum = 0 Then Exit Sub
If InputNum >0 Then ................... < this is where I dont know what to write.
Let me know if this needs clarification. Any help would be appreciated.