Excel help

Y

Yogin

Hi

I have a spreadsheet which looks similar to below

Shift
D1
D1
D2
D4
N1
N4
M1

On a difference sheet, currently I add this up manually.
Is there a way that I can auto sum to give me a total using countif.

Days = 4
Mids = 1
Nights = 2

Thanks

Yogin
 
M

Mike H

Hi,

Try this

=SUMPRODUCT((LEFT(Sheet1!A1:A7,1)="d")*(RIGHT(Sheet1!A1:A7,LEN(Sheet1!A1:A7)-1)))

Change "d" to M or N to sum the others.

Mike
 
S

stumac

How about: =COUNTIF(Range,"M*")

Put in the correct range and change the M to D and N for days and nights

hth

Stu
 
S

Stefi

=SUMPRODUCT(--(LEFT(Sheet1!$A$2:$A$8,1)=LEFT(A1,1)))
Adjust range $A$2:$A$8 to the real data and fill down the formula.


Regards,
Stefi

„Yogin†ezt írta:
 
Y

Yogin

Thanks Mike,

This works great.

Mike H said:
Hi,

Try this

=SUMPRODUCT((LEFT(Sheet1!A1:A7,1)="d")*(RIGHT(Sheet1!A1:A7,LEN(Sheet1!A1:A7)-1)))

Change "d" to M or N to sum the others.

Mike
 
R

Roger Govier

Hi Mike

looking at the OP's summary, it looks like the numeric's from each entry
aren't being used, so just
=SUMPRODUCT(--(LEFT(Sheet1!A1:A7,1)="d"))
for the D results will suffice.
 
M

Mike H

Hi,

I think that would work if all the entries ended in 1 but because there are
some D2, D4 etc I do think you need to specifically sum the string minus the
first character.

Mike
 
M

Mike H

Ah,

I see what you mean from the example data the OP got 4 for D which does
indeed suggest the numeric isn't being counted.

Mike
 

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