Suchkriterium mit 2 Werten

B

Bernard Rey

Kay Schulz :
ich habe einen zählenwennn-Funktion.
Ich weiss wie ich nach < 10 oder > 100
filtern kann.
Aber wie filtere ich nach > 10 und < 100?

Könntest Du uns ein wenig erklären wie Du es fertig bringst. Eigentlich wird
es fast dasselbe sein. Man muss aber die Daten auf zwei verschieden Kolonnen
mit den selben Namen:

Preis Preis

Ich glaube schon dass kann man mit der Hilfe finden.


Vielleicht wäre es einfacher deine Antwort auf der deutschsprachige Gruppe
zu finden: microsoft.public.de.softwarefuer.macintosh oder auf dieser, aber
mit Englisher Sprache...
 
K

Kay Schulz

Jay said:
I'd be glad to try and help if you post in English.

Jason
OOPS
Sorry
I use a function like countif
I want to have the filter
if the value is biggger than 10 and less
than 100.
countif (A3:A100; ">10 and <100")
or so
Thanks
Kay
 
K

Kay Schulz

Hi Jay,
tried it.
It result sinto 120 entries.
The entire column has only 75.
So something must be wrong
I did:
=SUMPRODUCT((Tabelle1!H3:H74>20)+(Tabelle1!H3:H74<30))
The result should be 52


Kay
 
J

Jay

Kay said:
Hi Jay,
tried it.
It result sinto 120 entries.
The entire column has only 75.
So something must be wrong
I did:
=SUMPRODUCT((Tabelle1!H3:H74>20)+(Tabelle1!H3:H74<30))
The result should be 52


Kay

Sorry, I thought you meant >20 OR <30 but I guess you meant >20 AND <30.

If so, both the following should give you what you're after.

=SUMPRODUCT(--(H3:H74>20),--(H3:H74<30))

OR

=SUMPRODUCT((H3:H74>20)*(H3:H74<30))

Both do the same thing.

HTH

Jason
 
K

Kay Schulz

Sorry, I thought you meant >20 OR <30 but I guess you meant >20 AND <30.

If so, both the following should give you what you're after.

=SUMPRODUCT(--(H3:H74>20),--(H3:H74<30))

OR

=SUMPRODUCT((H3:H74>20)*(H3:H74<30))

Both do the same thing.

HTH

Jason

That works beautifully
Kay
 

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