Conditional Format Loop

rbrace

New Member
Joined
Apr 30, 2012
Messages
17
This is part of a larger macro to update several workbooks.
Some Worksheet names have numbers only and some letters only.

I cannot figure out how to loop through each worksheet named with numbers and update the conditional formatting below.

VBA Code:
Sub test2()
    
Dim sht As Worksheet


'ADD CONDITIONAL FORMAT LOOP
      For Each sht In ActiveWorkbook.Worksheets
        If sht.Name <> sht.Name And IsNumeric(sht.Name) Then
            Range("$W$72:$X$121").Select
            Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, _
            Formula1:="=""YES"""
            Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
                With Selection.FormatConditions(1).Interior
                    .PatternColorIndex = xlAutomatic
                    .Color = 49407
                    .TintAndShade = 0
                End With
                Selection.FormatConditions(1).StopIfTrue = False
        End If
      Next sht
' END CONDITIONAL FORMATTING
End Sub
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
How about:

VBA Code:
Sub test2()
  Dim sht As Worksheet
'ADD CONDITIONAL FORMAT LOOP
  For Each sht In ActiveWorkbook.Worksheets
    If IsNumeric(sht.Name) Then
      sht.Select
      Range("$W$72:$X$121").Select
      Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, _
      Formula1:="=""YES"""
      Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
      With Selection.FormatConditions(1).Interior
      .PatternColorIndex = xlAutomatic
      .Color = 49407
      .TintAndShade = 0
      End With
      Selection.FormatConditions(1).StopIfTrue = False
    End If
  Next sht
' END CONDITIONAL FORMATTING
End Sub
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,805
Messages
6,121,665
Members
449,045
Latest member
Marcus05

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top