asyamonique
Well-known Member
- Joined
- Jan 29, 2008
- Messages
- 1,286
- Office Version
- 2013
- Platform
- Windows
Code:
Dim frm As Long
With Sheets("0800")
If .Cells(1, 1).Value = "" Then
frm = 1
Else
frm = .Cells(Rows.Count, 1).End(xlUp).Row + 1
End If
.Cells(frm, 1) = TextBox1.Value
.Cells(frm, 13) = TextBox2.Value
.Cells(frm, 14) = TextBox3.Value
.Cells(frm, 17) = ComboBox1.Value
End Wit
How can be create a new workbook with that code ranges and the same sheet name as well?