I have the following code set up on a user form which starts looking for the next empty row from the beginning of the spreadsheet but I would like it to start from cell B14.
'Determine emptyRow
emptyRow = WorksheetFunction.CountA(Range("A:A")) + 1
'Transfer information
Cells(emptyRow, 2).Value = JobTextBox.Value
Cells(emptyRow, 4).Value = CodeComboBox1.Value
Cells(emptyRow, 7).Value = TotalHrsTextBox.Value
Can anyone help with this code?
Thanks
Bookmarks