Hi I have this code for a workbook I have been trying to make, the problem is I need the next time a question is answered to have the data appear on the next empty cells in that column
is this possible or should I look at achieving this another way.
many thanks
Code:
Sub SAVE_INPUT_BOX()
MY_ENTRY = InputBox("Enter Your Name", "Name")
Range("Sheet2!a1").Value = MY_ENTRY
MY_ENTRY = InputBox("Please Vote 'N' for no, 'Y' fro yes or 'A' to abstain", "Vote Now")
Range("Sheet2!b1").Value = MY_ENTRY
MsgBox "Thank You For Voting, Your Vote has been Registered"
ThisWorkbook.Save
End Sub
is this possible or should I look at achieving this another way.
many thanks