Hi Guys,
I have a feeling this will be incredibly simple and I am just unable to put the right search terms together to find my answer.
I currently have a workbook with 1 sheet and several VBA buttons that open different Userform. Then we enter information and hit save to save in a particular box on that sheet. Very simple stuff.
What I am unable to do so far is copy this sheet many times and have the Userform save to whatever sheet the person using it is in.
Some background to help understand: we are currently a few people using the doc separately, but instead I want to make the doc Shared and with 1 sheet per user. So when person A is on the sheet with their name and uses the userform, it will save to Person A sheet. Currently the code contains
Im assuming this is what will have to be modified?
Hope I am clear,
Thanks to anyone for their help!
I have a feeling this will be incredibly simple and I am just unable to put the right search terms together to find my answer.
I currently have a workbook with 1 sheet and several VBA buttons that open different Userform. Then we enter information and hit save to save in a particular box on that sheet. Very simple stuff.
What I am unable to do so far is copy this sheet many times and have the Userform save to whatever sheet the person using it is in.
Some background to help understand: we are currently a few people using the doc separately, but instead I want to make the doc Shared and with 1 sheet per user. So when person A is on the sheet with their name and uses the userform, it will save to Person A sheet. Currently the code contains
Code:
Private Sub ButtonSave_Click()
Dim emptyRow As Long
'Make Sheet1 active
Sheet1.Activate
Hope I am clear,
Thanks to anyone for their help!