• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Count if with count A array [SOLVED]

salviakshay

New Member
Hi All,


I wanted to check for a little modification in using Count(if with a count A condition.

Attaching a dropbox link for sample file...


https://www.dropbox.com/s/jd4nclj6owt4s2p/Status%20Report.xlsx?m


I am trying to get a count of "cells with text" in Defect Calculation sheet based on two conditions in Sheet "Status Report". the conditions are the Month is Aug'13 and Queue is "open" in the example it should return 3 in Defect calculation A3.
 
Without being looking at the workbook (problem on my end, not yours), could you do something like:

=SUMPRODUCT((TEXT(DateRange,"mmyy")="0813)*(QueueRange="open")*ISTEXT(TextRange))
 
Can you post the actual formula that you used, so we can get a feel for the structure?
 
Sorry for the delay, below is what i am using


{=COUNT(IF(('Status report'!A2:A111="Aug'13")*('Status report'!B2:B111="Open"),COUNTA('Status report'!C2:H111)))}


Sample file has been uploaded on dropbox link

https://www.dropbox.com/s/jd4nclj6owt4s2p/Status%20Report.xlsx?m
 
Hi Akshay ,


Try this , entered as an array formula , using CTRL SHIFT ENTER :


=SUM(IF(Months="Aug'13",IF(Queues="Open",IF(Data_Text<>"",1,0))))


where the named ranges are defined as follows :


Months : ='Status report'!$A$2:$A$150


Queues : ='Status report'!$B$2:$B$150


Data_Text : ='Status report'!$C$2:$H$150


Narayan
 
Back
Top