• 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.

Help Countif

Vainit2931

New Member
I want to count the present days for employees whose branch is in row and dates are in columns. So guide how to add countifs formula for rows as well as columns
 
Vainit2931
You should Forum Rules
How to get the Best Results at Chandoo.org
there are many sentences, which You seems missed.
 
I want to count the present days for employees whose branch is in row and dates are in columns. So guide how to add countifs formula for rows as well as columns
It is possible to use COUNTIFS and similar functions over a 2D range but all the criteria ranges must have the same dimensions. Thus
= COUNTIFS(register, employee)
might give the number of occurrences of a given employee name within a two dimensional grid.

To return results from a given branch, XLOOKUP could be used to return data specific to a particular store prior to the count
= COUNTIFS(
XLOOKUP( branchName, branch, register ),
employee )


So far, this is a very general query; hence a somewhat non-specific reply.
 
Back
Top