ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,737
- Office Version
- 2007
- Platform
- Windows
Hi,
I am using the following code.
My problem is that when i add a hyperlink into this cell the Font Size should be 10 but its actually say 22
If i type manually in the same cell or actuall any in column D then all is well and the Font Size is 10 as it should be.
Thanks
I am using the following code.
My problem is that when i add a hyperlink into this cell the Font Size should be 10 but its actually say 22
If i type manually in the same cell or actuall any in column D then all is well and the Font Size is 10 as it should be.
Code:
Private Sub Worksheet_Activate()
Range("B7").Select
Range("D13:D100").Font.Size = 10
Range("D13:D100").Name = "Calibri"
Range("D13:D100").BorderAround xlContinuous, xlThin
Range("D13:D100").BorderAround xlContinuous, xlThin
End Sub
Thanks
Last edited by a moderator: