Glam Prestige Journal

Bright entertainment trends with youth appeal.

In excel Im trying to count Items not listed

An example of how I am trying to achieve this would be:

Item Name ---------- Listed Date

Example Item 1 ----- 12/12/12

Example Item 2 -----

Item 2 has not yet been listed. so when it's all said and done i would like to see how many items are not listed.

I have tried using the following formula to no avail.

=IF(A:A <> "",COUNTBLANK(B:B))

Is there any way I can get the count of items not yet listed?

0

2 Answers

How about

=COUNTA(A:A)-COUNTA(B:B)

If column B is actually full of formulas which return a "", this won't work as COUNTA will include the cells with formulas. In which case use:

=COUNTA(A:A)-(COUNTA(B:B)-COUNTBLANK(B:B))
1

Please try INDEX function:
Type the following formula in a blank cell and press Ctrl+Shift+Enter. Then fill the cells down.

=INDEX(A:A,SMALL(IF(B:B="",ROW(B:B),4^8),ROW(A1))&"")

enter image description here

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy