Hello,
So far I have this but I can not get it use the next line inside of a table. It always uses the next row after the end of the table. Any thoughts?
So far I have this but I can not get it use the next line inside of a table. It always uses the next row after the end of the table. Any thoughts?
strName = InputBox("What is the Estimate #")
strName1 = InputBox("What is the Prospects Name?")
strName2 = InputBox("What is the Prospects Address?")
strName3 = InputBox("What is the Prospects City?")
strName4 = InputBox("What is the Prospects Phone Number?")
strName5 = InputBox("Are they an existing customer?")
strName6 = InputBox("Where did they hear about us?")
strName7 = InputBox("What type of job is this?")
strName8 = InputBox("What is the value of the quote?")
strName9 = InputBox("What is the Date (MM/DD/YY) the Estimate was completed?")
NextEmptyRow = Sheets("Estimates").Cells(Rows.Count, "A").End(xlUp).Offset(1).Row
Sheets("Estimates").Cells(NextEmptyRow, "A").Value = strName
Sheets("Estimates").Cells(NextEmptyRow, "B").Value = strName1
Sheets("Estimates").Cells(NextEmptyRow, "C").Value = strName2
Sheets("Estimates").Cells(NextEmptyRow, "D").Value = strName3
Sheets("Estimates").Cells(NextEmptyRow, "E").Value = strName4
Sheets("Estimates").Cells(NextEmptyRow, "F").Value = strName5
Sheets("Estimates").Cells(NextEmptyRow, "G").Value = strName6
Sheets("Estimates").Cells(NextEmptyRow, "H").Value = strName7
Sheets("Estimates").Cells(NextEmptyRow, "I").Value = strName8
Sheets("Estimates").Cells(NextEmptyRow, "J").Value = strName9
strName1 = InputBox("What is the Prospects Name?")
strName2 = InputBox("What is the Prospects Address?")
strName3 = InputBox("What is the Prospects City?")
strName4 = InputBox("What is the Prospects Phone Number?")
strName5 = InputBox("Are they an existing customer?")
strName6 = InputBox("Where did they hear about us?")
strName7 = InputBox("What type of job is this?")
strName8 = InputBox("What is the value of the quote?")
strName9 = InputBox("What is the Date (MM/DD/YY) the Estimate was completed?")
NextEmptyRow = Sheets("Estimates").Cells(Rows.Count, "A").End(xlUp).Offset(1).Row
Sheets("Estimates").Cells(NextEmptyRow, "A").Value = strName
Sheets("Estimates").Cells(NextEmptyRow, "B").Value = strName1
Sheets("Estimates").Cells(NextEmptyRow, "C").Value = strName2
Sheets("Estimates").Cells(NextEmptyRow, "D").Value = strName3
Sheets("Estimates").Cells(NextEmptyRow, "E").Value = strName4
Sheets("Estimates").Cells(NextEmptyRow, "F").Value = strName5
Sheets("Estimates").Cells(NextEmptyRow, "G").Value = strName6
Sheets("Estimates").Cells(NextEmptyRow, "H").Value = strName7
Sheets("Estimates").Cells(NextEmptyRow, "I").Value = strName8
Sheets("Estimates").Cells(NextEmptyRow, "J").Value = strName9