Hey All,
I have a user form for tracking orders i need to follow up on. When the status of the order changes I update the sheet via the same form I used to submit the data initially. I have an "update" button to do this. The problem i'm having is, if the information is being offset by 1 based on the active cell. The code below has the column letter at the end of each line of code.
I have a user form for tracking orders i need to follow up on. When the status of the order changes I update the sheet via the same form I used to submit the data initially. I have an "update" button to do this. The problem i'm having is, if the information is being offset by 1 based on the active cell. The code below has the column letter at the end of each line of code.
Code:
ActiveCell.Row.Value = txtDateSUB.Value 'a
ActiveCell.Offset(0, 1) = txtvendor.Value 'b
ActiveCell.Offset(0, 2) = txtCust.Value 'c
ActiveCell.Offset(0, 3) = txtSSPO.Value 'd
ActiveCell.Offset(0, 4) = txtVOrder.Value 'e
ActiveCell.Offset(0, 5) = txtREQSD.Value 'f
ActiveCell.Offset(0, 6) = txtIHD.Value 'g
ActiveCell.Offset(0, 7) = chkREQ.Value 'h
ActiveCell.Offset(0, 8) = chkRCVD.Value 'i
ActiveCell.Offset(0, 9) = chkAPPR.Value 'j
ActiveCell.Offset(0, 10) = txtTrack.Value 'k
ActiveCell.Offset(0, 11) = txtASD.Value 'l
ActiveCell.Offset(0, 12) = cbSTAT.Value 'm
ActiveCell.Offset(0, 13) = txtVendEML.Value 'n
[code]