Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello All,
In Excel 2003, I am looking for a way to count colored (conditional formated cells) in a column. Desired outcome.... Counted cells #'s in (A1) where the colored cells are between A:2 and A:4000 TFTH |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use the same formula which is used in Conditional Formatting for
highlighting the cells. If you might have used the [Cell value] is in Conditional formatting other than [Formula is] then explain about the conditions. Remember to Click Yes, if this post helps! -------------------- (Ms-Exl-Learner) -------------------- "tom" wrote: Hello All, In Excel 2003, I am looking for a way to count colored (conditional formated cells) in a column. Desired outcome.... Counted cells #'s in (A1) where the colored cells are between A:2 and A:4000 TFTH |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you for your response, but I can not see to figure out how to manage
your recommendation. Can you provide an example? TFTH "Ms-Exl-Learner" wrote: You can use the same formula which is used in Conditional Formatting for highlighting the cells. If you might have used the [Cell value] is in Conditional formatting other than [Formula is] then explain about the conditions. Remember to Click Yes, if this post helps! -------------------- (Ms-Exl-Learner) -------------------- "tom" wrote: Hello All, In Excel 2003, I am looking for a way to count colored (conditional formated cells) in a column. Desired outcome.... Counted cells #'s in (A1) where the colored cells are between A:2 and A:4000 TFTH |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How you would have highlighted the cells using the Conditional Formatting?
-------------------- (Ms-Exl-Learner) -------------------- "tom" wrote in message ... Thank you for your response, but I can not see to figure out how to manage your recommendation. Can you provide an example? TFTH "Ms-Exl-Learner" wrote: You can use the same formula which is used in Conditional Formatting for highlighting the cells. If you might have used the [Cell value] is in Conditional formatting other than [Formula is] then explain about the conditions. Remember to Click Yes, if this post helps! -------------------- (Ms-Exl-Learner) -------------------- "tom" wrote: Hello All, In Excel 2003, I am looking for a way to count colored (conditional formated cells) in a column. Desired outcome.... Counted cells #'s in (A1) where the colored cells are between A:2 and A:4000 TFTH |
#5
![]() |
|||
|
|||
![]() Quote:
Private Sub Workbook_Open() Dim i, j As Integer j = 0 ActiveWorkbook.Sheets("sheet1").Select For i = 2 To 4000 If Worksheets("sheet1").Range("A" & i).FormatConditions.Count < 0 Then j = j + 1 End If Next i Worksheets("sheet1").Range("A" & 1) = j End Sub all the best
__________________
Thanks Bala |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
counting colored cells | Excel Discussion (Misc queries) | |||
Counting colored cells | Excel Worksheet Functions | |||
Counting cells with colored font | Excel Worksheet Functions | |||
Counting colored cells | Excel Discussion (Misc queries) | |||
counting colored cells | Excel Discussion (Misc queries) |