Row 100 contains the Text "Comments". With the cursor always on row 26 of the active column,
the following code is not working correctly
It should put a new value from Textbox1 of Userform1 below any previously entered value
below row 100(Comments), and keep doing that. What it's doing
is erasing the value in row 101 each time and replacing it with the new value from Textbox1 instead
of putting it BELOW(i.e., the 1st blank cell) the previously entered value(s) below Comments(row 100)
I can't see anything wrong with this simple code operation. Csn anyone please show me what
is wrong wirh this code ?
Thanks for anyone's help
cr
the following code is not working correctly
Code:
Cells(74, ActiveCell.Column).End(xlDown).Offset(1, 0).Select
ActiveCell.Value = TextBox1.Value
It should put a new value from Textbox1 of Userform1 below any previously entered value
below row 100(Comments), and keep doing that. What it's doing
is erasing the value in row 101 each time and replacing it with the new value from Textbox1 instead
of putting it BELOW(i.e., the 1st blank cell) the previously entered value(s) below Comments(row 100)
I can't see anything wrong with this simple code operation. Csn anyone please show me what
is wrong wirh this code ?
Thanks for anyone's help
cr