function for counting cells

  • Thread starter Thread starter michael
  • Start date Start date
M

michael

I am using a conditional format which blacks out cells
that don't match my criteria... I then want to add the
number of cells that have not been blacked out in a
certain row...

I want to "count cells in Row that are not filled in with
black"

Thanks in advance.
 
Reverse the criteria, if for example you black out cells that are =5

then you could use

=COUNTIF(Range,"<>5")
 
Back
Top