DanteAmor:
For some reason, something's not working right with this code:
]code]
If ActiveCell.Row <> 26 Then
MsgBox "Must be on row 26!"
Else
MsgBox "cursor on row 26. Proceed"
Cells(26, ActiveCell.Column).Value = Cells(26, ActiveCell.Column).Value + TextBox1.Value 'adds Textbox1.Vlaue to value in row 26
Cells(74, ActiveCell.Column).End(xlDown).Offset(1, 0).Select 'moves to 1st blank row below Comments (row 100)
ActiveCell.Value = ComboBox1.Value 'ineerts Combobox1.value into blank cell
Cells(26, ActiveCell.Column).Select 'returns back to row 26 of Activecolumn
[/code]
Problem with this code: instead of putting a NEW value of Combobox1 BELOW(1st blank cell) the first entered value, it erases that first value and puts the new value into the cell
right below Comments(row 100). I don't want thst. I just want to keep adding values one after the other below the Comments row(row 100) and then saving them.
What's wrong with this code ?
Thanks for all your help, once again.
cr
End If
End Sub