Concatenating two formulas

G

Guest

Hi,
I have two seperate data in two seperate columns. say columns are
ABC 123
DEF 456
GHI 789
JKL 012

Now i wish to write a formula that will count the occurance of 123 with
corrosponde to ABC. say for above columns, value would be "1".

i am trying it with COUNTIF, but i am not able to concatenate two COUNTIF's.

Please help

Mukesh
 
B

Biff

Hi!

Try this:

=SUMPRODUCT(--(A1:50="ABC"),--(B1:B50=123))

Better to use cells to hold the criteria:

D1 = ABC
E1 = 123

=SUMPRODUCT(--(A1:50=D1),--(B1:B50=E1))

Biff
 
G

Guest

Dear Biff,

It is not returning the right value. In my sheet according to cell
information value should be 5 but it is returning "0".

Would this formula wrk???

Suggest

Thanks
Mukesh
 
B

Biff

Hi!

Try this:

=SUMPRODUCT(--(A1:50="ABC"),--(B1:B50="123"))

If that works then your 123 is really TEXT and is not a numeric number. If
that doesn't work post the *EXACT* formula that you tried.

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

lookup with IF criteria 2
Filling in missing data 5
Removeing Duplicates 2
Using concatenate to include a line return 1
If statement help 7
Data Matching 2
Compare two columns 1
Rearrange sheet data 3

Top