F
frogman7
I have a flat data file.
Name status
Jones started
Johnson started
Smith waiting
Jones closed
Johnson waiting
Smith closed
Jones started
Johnson waiting
Smith waiting
I want to count the number of time Jones has the status of closed.
is this possible without using VBA
if(A:A="Jones", countif(B:B, "closed"), "")
I am trying to find the best thing to use.
VBA
Lookup Tables
nested IFs
Thank you
Name status
Jones started
Johnson started
Smith waiting
Jones closed
Johnson waiting
Smith closed
Jones started
Johnson waiting
Smith waiting
I want to count the number of time Jones has the status of closed.
is this possible without using VBA
if(A:A="Jones", countif(B:B, "closed"), "")
I am trying to find the best thing to use.
VBA
Lookup Tables
nested IFs
Thank you