|
-
Jan 7th, 2004, 08:05 AM
#1
Thread Starter
Hyperactive Member
-
Jan 7th, 2004, 10:53 AM
#2
Addicted Member
Check for a value in the target cell. If there is one then copy it down. Then put value into target. Something like :-
If Cells(1, 1).Value <> 0 Then
Cells(2, 1).Value = Cells(1, 1).Value
End If
Cells(1, 1).Value = MyValue
Regards
BrianB
-------------------------------
-
Jan 8th, 2004, 10:51 AM
#3
New Member
Or you could make it search for the next free cell down, like:
Sheets("Sheet1").Activate
If IsEmpty(Range("A2")) Then
Row = 2
Else
Range("A1").End(xlDown).Select
Row = ActiveCell.Row + 1
End If
Cells(Row, 1).Select
Cells(Row, 1) = TextBox1.Text
Jim Root, IG
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|