I am filling Col a and e with formula's with the following code, How do i change it to only fill up only one cell
Private Sub CommandButton1_Click()
Dim GradingCol As Integer
Dim LastRow As Long
If Len(TextBox2.Value) = 0 Then
MsgBox "The Name field can not be left empty!", vbOKOnly, "Derry...
devendra.dvm seems from his posts to not even try to solve his own problems or to modify code to get what he wants, I myself will try and when I am stuck ask for help ( See my post about ListBox ).
Here is a reply to this from another forum.
Sub compare()
Sheets(3).Activate 'Go to sheet 3
Cells.Clear 'and clear all previous results
Range("a1").Select'set cursor at the top
Sheets(1).Activate 'go to sheet 1
Range("a1").Select'begin at the top
Dim search_for AsString'temp variable to...
I am looking to learn about UserForms, IE:- to place names to a range of cells on file open, how to show "A2:A400" and select to textbox and wright to sheet, Any web sites etc for me to look at.
Derek McGill