View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Dave F[_2_] Dave F[_2_] is offline
external usenet poster
 
Posts: 187
Default complex formula does something simple?

Agreed it's overly complex. I more or less re-worked it to what you
suggest. The workbook was dumped in my lap by my boss: "This makes no
sense, review it and make it make sense."

Got to love that.

Thanks for the feedback.

Dave

On Jul 31, 5:04 pm, "T. Valko" wrote:
Doesn't this formula essentially count the blanks in M1:M141
and compare that number to the number of rows between
E101 and E141?


Essentially, yes, but it's overly complex. It counts empty cells, not
necessarily "blank" cells. For example, it doesn't count cells that contain
formula blanks (""). This non-array formula will do the same thing:

=IF(COUNTIF(M1:M141,"=")=40,0,COUNTIF(M1:M141,"=") )

I can't figure out why, in the original formula, they're subtracting 1:

ABS(ROW(E101)-ROW(E141))-1

--
Biff
Microsoft Excel MVP

"Dave F" wrote in message

ups.com...



{=IF(SUM(--ISBLANK(M1:M141))-(ABS(ROW(E101)-ROW(E141))-1)<0,SUM(--
ISBLANK(M1:M141)),0)}


(Entered as an array formula.)


If the count of blank cells in M1:M141 minus (141-101) < 0, then
count the blanks in M1:M141, else enter 0.


Doesn't this formula essentially count the blanks in M1:M141 and
compare that number to the number of rows between E101 and E141?


Found in a workbook I'm auditing...- Hide quoted text -


- Show quoted text -