Excel VBA Macro: Count Conditionally Formatted Cells (Dynamic Range)

  Рет қаралды 6,351

greggowaffles

greggowaffles

Күн бұрын

Excel VBA Macro: Count Conditionally Formatted Cells (Dynamic Range). In this video, we create code that automatically counts all conditionally formatted cells in a range, regardless of the number of rows. This code allows the user to easily count conditionally formatted cells across multiple columns with different criteria for each. We use a Message Box and Else If to account for there being zero, one, or more conditionally formatted cells in our count.
Data used in this video:
gsociology.ica...
This is a modification of code from:
www.excelsirji...
Code:
Sub count_cond_cells()
Dim rng As Range
Dim rngCell As Range
Dim row_count As Integer
Dim cond_count As Integer
Dim ws As Worksheet
Set ws = ThisWorkbook.Sheets("Sheet1")
ws.Activate
row_count = WorksheetFunction.CountA(Range("A1", Range("A1").End(xlDown)))
cond_count = 0
Set rng = ws.Range("D2:J" & row_count)
For Each rngCell In rng
If Cells(rngCell.Row, rngCell.Column).DisplayFormat. _
Interior.Color = RGB(255, 199, 206) Then
cond_count = cond_count + 1
End If
Next
If cond_count = 0 Then
MsgBox "There are no conditionally formatted cells."
ElseIf cond_count = 1 Then
MsgBox "There is 1 conditionally formatted cell."
Else
MsgBox "There are " & cond_count & " conditionally formatted cells."
End If
End Sub
#ExcelVBA #ExcelMacro

Пікірлер: 11
@robdc4829
@robdc4829 Жыл бұрын
I would rather have the total red cells show up in a cell versus a message. That said, this is the best video I've seen so far on the topic. All the other videos I've seen use a named range to use an old function. The seems to work with one column, but not with a table like he's done here.
@greggowaffles
@greggowaffles Жыл бұрын
Thank you for your feedback!
@greggowaffles
@greggowaffles Жыл бұрын
Just made a similar video where the total number of red cells show up at the end of each row. Excel VBA Macro: Count and List the Number of (Conditonally Formatted) Cells at the End of Each Row kzbin.info/www/bejne/hp7Hqqx7e6h9fLc
@cgsmiddleafifa9340
@cgsmiddleafifa9340 2 жыл бұрын
why my excel sheet not excepting VBA Macro code?
@greggowaffles
@greggowaffles Жыл бұрын
Hope you were able to get it working
@rashminsolanki8918
@rashminsolanki8918 2 жыл бұрын
Like one row has different conditionally colored cells... than end that cell one cell has count that how many cell ls of specific colored..
@greggowaffles
@greggowaffles Жыл бұрын
I can make a video on this topic
@greggowaffles
@greggowaffles Жыл бұрын
Just made a video on this! Excel VBA Macro: Count and List the Number of (Conditonally Formatted) Cells at the End of Each Row kzbin.info/www/bejne/hp7Hqqx7e6h9fLc
@rashminsolanki8918
@rashminsolanki8918 2 жыл бұрын
I want to put counting conditionally colored cell like a formula...
@greggowaffles
@greggowaffles Жыл бұрын
Do you have a specific example?
@jozefnagels8443
@jozefnagels8443 Жыл бұрын
not very usefull if the value is not in a cell
Excel VBA Macro: Save Selected Range as PDF (and Center on Page)
14:43
IF Formula Based on CELL COLOUR Using VBA Function
7:17
Chester Tugwell
Рет қаралды 26 М.
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Create a Count of Coloured cells in Conditionally formatted sheets
3:18
The 7 Levels of Math Symbols
14:03
The Unqualified Tutor
Рет қаралды 29 М.
The Ultimate Guide to Copying Data using Excel VBA
31:05
Excel Macro Mastery
Рет қаралды 72 М.
I Sold My $100,000 Cybertruck After 50 Days
22:46
Snazzy Labs
Рет қаралды 1 МЛН
Conditionally format so the coloured cells can be counted in Excel
10:26
VBA For Loop - A Complete Guide
12:36
Excel Macro Mastery
Рет қаралды 86 М.
Python in Excel vs. VBA - What You Should Learn in 2024!
10:05
David Langer
Рет қаралды 82 М.
Uncover Hidden Excel Powers: Sum & Count Cells by Color!
9:36
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН