tonywatsonhelp
Well-known Member
- Joined
- Feb 24, 2014
- Messages
- 3,210
- Office Version
- 365
- 2019
- 2016
- Platform
- Windows
HI Everyone,
I need to change these column refs from Letters to numbers but just cant get it right.
please help
the code its in is
So I need each Range to be column numbers instead of letters so
AB14:AB214 = Column 28 Row 14 : Column 28 Row 214
Please help if you can
Thanks
Tony
I need to change these column refs from Letters to numbers but just cant get it right.
please help
the code its in is
Code:
Dim r As Range
Set r = Intersect(Target, [AB14:AB214,AG14:AG214,AL14:AL214,AQ14:AQ214,AV14:AV214,BA14:BA214,BF14:BF214,BK14:BK214,BP14:BP214])
If r Is Nothing Then Exit Sub
If r.Cells.Count <> 1 Then Exit Sub
So I need each Range to be column numbers instead of letters so
AB14:AB214 = Column 28 Row 14 : Column 28 Row 214
Please help if you can
Thanks
Tony