Case Sensitive SumProduct

C

cmiedaner

I am using this formula:

=(SUMPRODUCT(--($E$48:$E$22962=226);--($J$48:$J$22962=$W19);--($G$48:$G$22962="SailDirectedOrderNotice");$A$48:$A$22962))

The value in $W19 is 'gd'. in the column of data, there is also 'GD'. The formaul is calculating the 'GD' data, not 'gd'.

Is there a way to make the formula case sensitive ?

Thanks in advance.
 
B

Ben McClave

Hi,

You could try the EXACT formula:

EXACT($J$48:$J$22962,$W19)

in place of

($J$48:$J$22962=$W19)
 
C

cmiedaner

I am using this formula: =(SUMPRODUCT(--($E$48:$E$22962=226);--($J$48:$J$22962=$W19);--($G$48:$G$22962="SailDirectedOrderNotice");$A$48:$A$22962)) The value in $W19 is 'gd'. in the column of data, there is also 'GD'.. The formaul is calculating the 'GD' data, not 'gd'. Is there a way to make the formula case sensitive ? Thanks in advance.

Thanks.

I tried this:

=(SUMPRODUCT(--($E$48:$E$22962=226);--EXACT($J$48:$J$22962=$W19);--($G$48:$G$22962="SailDirectedOrderNotice");$A$48:$A$22962))

but excel returned an error "...entered too few arguments for this function...."
 
R

Ron Rosenfeld

Thanks.

I tried this:

=(SUMPRODUCT(--($E$48:$E$22962=226);--EXACT($J$48:$J$22962=$W19);--($G$48:$G$22962="SailDirectedOrderNotice");$A$48:$A$22962))

but excel returned an error "...entered too few arguments for this function..."

Perhaps if you tried the syntax that Ben suggested ...

--EXACT($J$48:$J$22962,$W19)
 
C

cmiedaner

I am using this formula: =(SUMPRODUCT(--($E$48:$E$22962=226);--($J$48:$J$22962=$W19);--($G$48:$G$22962="SailDirectedOrderNotice");$A$48:$A$22962)) The value in $W19 is 'gd'. in the column of data, there is also 'GD'.. The formaul is calculating the 'GD' data, not 'gd'. Is there a way to make the formula case sensitive ? Thanks in advance.

Thank you all. I've got it working !
 

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

Top