calculation for certain columns

M

Mohd

Hi
I want the functions that make this option:

first it should check if the columns A3:A10 has these letters "IS","IT" at
beggining, then sum the values in E3:E10 THEN devide it by sum of values in
D3:D10 for all achiving A3:A10 columns criteria
 
R

Ragdyer

One way ... assuming "IS" *OR* "IT":

=SUMPRODUCT((LEFT(A3:A10,2)={"IS","IT"})*E3:E10)/SUMPRODUCT((LEFT(A3:A10,2)=
{"IS","IT"})*D3:D10)
 

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