+ Reply to Thread
Results 1 to 4 of 4

count the number of nulls for a specific employee

  1. #1
    Registered User
    Join Date
    11-20-2008
    Location
    St. Peters, MO
    Posts
    3

    count the number of nulls for a specific employee

    Hi,

    Column A contains employee names. Column B contains a value indicating they have completed a particular task. If they have not, column B contains a null. I want to count the number of nulls for a specific employee. For example: If column a = Jones count number of Nulls in column B. I am unable to find a solution to this in Help.

    Thanks
    Last edited by VBA Noob; 11-20-2008 at 05:38 PM.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Something like:

    =SUMPRODUCT(--(J2:J18="Jones")*(B2:B18=""))

    adjust ranges to suit and replace "Jones" with cell reference containing the name, if desired.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    11-20-2008
    Location
    St. Peters, MO
    Posts
    3
    Thank you for the reply, but this returned '0'.

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Did you adjust the ranges to match your data...

    Are they true nulls in column B or are they spaces (entered with spacebar)? does this work: =SUMPRODUCT((J2:J18="Jones")*(B2:B18=" "))

    Are the Jones entries void of extra spaces at either end? does this work?
    =SUMPRODUCT((Trim(J2:J18)="Jones"))*(B2:B18=""))

    Actually, the first -- is redundant... use original =SUMPRODUCT((J2:J18="Jones")*(B2:B18=""))

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1