Hi anyone,
How could I make the following code to display the text in the code on column "F" below the last data row of column "C"; when the user changes the value in cell "J10"
Any help on this would be kindly appreciated.
Thanks in advance.
How could I make the following code to display the text in the code on column "F" below the last data row of column "C"; when the user changes the value in cell "J10"
Code:
Dim m As Long
If Not Range("J10") = "" Then
With Worksheets("MySheet")
m = .Cells(.Rows.Count, 1).End(xlUp).Row
If Not .Cells(m, 7) = "Welcome" Then
.Cells(m + 1, 7) = "Welcome"
.Cells(m + 1, 7).Font.Bold = True
End If
End With
End If
Any help on this would be kindly appreciated.
Thanks in advance.