harveya915
Board Regular
- Joined
- Sep 4, 2015
- Messages
- 141
I'm new to this so bare with me.
I have an excel sheet with data on it in columns B-G. The amount of Rows with data will vary, beginning from row 6-?, but always continuous, no rows will be empty.
I would like to click a button and have checkboxes inserted in columns H,I,J only on the rows with data on them.
P.S. When people on here provide codes for me, I ask them to provide a small explanation as to what the code does, I then save all these codes for future reference. If you could please do the same, I would really appreciate it.
This is an example, the green is the description...
'Make Sheet1 active
Sheet1.Activate
'Transfer information
ActiveCell.Value = UserForm2.TextBox4.Value
ActiveCell.Offset(rowOffset:=0, columnOffset:=1).Value = UserForm2.ComboBox2.Value
ActiveCell.Offset(rowOffset:=0, columnOffset:=2).Value = Now
Much Thanks!
I have an excel sheet with data on it in columns B-G. The amount of Rows with data will vary, beginning from row 6-?, but always continuous, no rows will be empty.
I would like to click a button and have checkboxes inserted in columns H,I,J only on the rows with data on them.
P.S. When people on here provide codes for me, I ask them to provide a small explanation as to what the code does, I then save all these codes for future reference. If you could please do the same, I would really appreciate it.
This is an example, the green is the description...
'Make Sheet1 active
Sheet1.Activate
'Transfer information
ActiveCell.Value = UserForm2.TextBox4.Value
ActiveCell.Offset(rowOffset:=0, columnOffset:=1).Value = UserForm2.ComboBox2.Value
ActiveCell.Offset(rowOffset:=0, columnOffset:=2).Value = Now
Much Thanks!