I have a form on a worksheet (Entry), when someone fills it in and click submit they store the values to another sheet(Tally) in the same workbook. The problem is I need it to collect all the submitted forms and place them in order on the Tally sheet, without overwriting previous values. At the moment I have:
r = Range("B5:E5")
Sheets("Tally").Range("B5:E5") = r
But this obviously overwrite the values on Tally each time the submit button is clicked. Something like:
r = Range("B5:E5")
x = next free row on Tally
Sheets("Tally").Range("Bx:Ex") = r