Update data records
Closed
eexpert
Posts
2
Registration date
Friday 7 June 2013
Status
Member
Last seen
28 June 2013
-
28 Jun 2013 à 02:09
Blocked Profile - 28 Jun 2013 à 07:46
Blocked Profile - 28 Jun 2013 à 07:46
Related:
- Update data records
- Microsoft store update download - Download - App downloads
- Tmobile data check - Guide
- Tentacle locker 2 pool update windows - Download - Adult games
- Windows update blocker - Download - Other
- Discord update failed - Guide
1 response
Good Morning.
My idea was to build a userform that finds the next cel in a range of 999, and insert it. If you need more cells, extend the cell count from 999 to N.
Make a userform with a TextBox. Keep the textbox name as TextBox1
Create a CmdButton, keep its name CommandButton1.
now attach the follwoing code to the commandbutton1.click
Dim LastRow As Object
Set LastRow = Sheet1.Range("a999").End(xlUp)
LastRow.Offset(1, 0).Value = TextBox1.Text
TextBox1.Text = ""
now, just keep your userform open, and enter into the textbox.
This is a direction and advisement. I am sorry for not providing a turn key solution.
My idea was to build a userform that finds the next cel in a range of 999, and insert it. If you need more cells, extend the cell count from 999 to N.
Make a userform with a TextBox. Keep the textbox name as TextBox1
Create a CmdButton, keep its name CommandButton1.
now attach the follwoing code to the commandbutton1.click
Dim LastRow As Object
Set LastRow = Sheet1.Range("a999").End(xlUp)
LastRow.Offset(1, 0).Value = TextBox1.Text
TextBox1.Text = ""
now, just keep your userform open, and enter into the textbox.
This is a direction and advisement. I am sorry for not providing a turn key solution.