ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Conditional format Font Type(not colour) change (https://www.excelbanter.com/excel-discussion-misc-queries/192209-conditional-format-font-type-not-colour-change.html)

frankod

Conditional format Font Type(not colour) change
 
HI Guys, I am trying to get the font type to change on a conditional format
basis.
The screen options let me select colours but I would like to change the font
type which is visible but greyed out. ?? Any help appreciated

Bob Phillips

Conditional format Font Type(not colour) change
 
Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "H1:H10" '<== change to suit

On Error GoTo ws_exit
Application.EnableEvents = False

If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target

If .Value 100 Then

.Font.Name = "Marlett"
End If
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"frankod" wrote in message
...
HI Guys, I am trying to get the font type to change on a conditional
format
basis.
The screen options let me select colours but I would like to change the
font
type which is visible but greyed out. ?? Any help appreciated




frankod

Conditional format Font Type(not colour) change
 

Thanks Bob - will give it a go.
Franko

"Bob Phillips" wrote:

Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "H1:H10" '<== change to suit

On Error GoTo ws_exit
Application.EnableEvents = False

If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target

If .Value 100 Then

.Font.Name = "Marlett"
End If
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"frankod" wrote in message
...
HI Guys, I am trying to get the font type to change on a conditional
format
basis.
The screen options let me select colours but I would like to change the
font
type which is visible but greyed out. ?? Any help appreciated






All times are GMT +1. The time now is 04:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com