TeacherEric
Board Regular
- Joined
- Mar 21, 2006
- Messages
- 78
Hello all,
I'm stumped... so of course I turn to you guys for the answers.
Now that you're good and buttered...
This is the code I want to run then kept ready (like a TSR).
Every time I move cells the code will run.
The code should start and stop with 1 particular sheet only, not the entire workbook.
Thank you
TeacherEric
I'm stumped... so of course I turn to you guys for the answers.
Now that you're good and buttered...
This is the code I want to run then kept ready (like a TSR).
Every time I move cells the code will run.
The code should start and stop with 1 particular sheet only, not the entire workbook.
Thank you
TeacherEric
Code:
restart:
Dim a As String
Dim b As String
a = ActiveCell.Row
b = ActiveCell.Address
If ActiveCell.Row > 8 Then
' This code should only run if the active ROW is 9 - 63
' the sheet is protected, so no need to validate columns
Range("A" & a & ":" & "C" & a).Select
Selection.Characters.Font.Bold = True
Selection.Characters.Font.Size = 14
Range(b).Select
If ActiveCell.Address <> b Then
Range("A" & a).Characters.Font.Bold = False
Range("A" & a).Characters.Font.Size = 10
GoTo restart
End If
End If