Archiv für June, 2009
  |  
Markus am 20.06.09 um 2:26 pm Uhr

FRU - what is that?

Computer & Co.

Learned this cool abbreviation today: FRU = Field Replaceable Unit.

Which means spare parts, which can be exchanged by the user or by someone else on the place where the device is used.

Today, the field was my living room…

Markus am 18.06.09 um 9:37 pm Uhr

Zählenwenn mit und-Verknüpfung in Excel

Windows

Wie hier schon auf Englisch geschrieben (Excel - countif with and conjunction), gibt es eine Möglichkeit in Excel die Zählenwennfunktion auch mit mehreren und-Verknüpfungen zu erstellen. Dann allerdings nicht mit der Zählenwenn-Funktion, sondern mit summenprodukt.

Beispiel: Man möchte die Anzahl bekommen, bei der in Spalte A “Heaven” und in Spalte B “and” und in Spalte C “Hell” steht.

Sieht dann so aus:

=SUMMENPRODUKT((A1:A4=”Heaven”)*(B1:B4=”and”)*(C1:C4=”Hell”))

Das war’s.

Markus am 18.06.09 um 9:33 pm Uhr

Excel - countif with and conjunction

Windows

If you want to count the entries in one table in Excel, which fulfill a certain condition, you can use countif. This looks like:
=countif(a:a;5)
This will count all cells, which have the value 5.

But sometimes, you might want to do this:
Count all values where the corresponding values are as follows:
A:A=”Heaven” and B:B=”and” and C:C=Heaven

You can not do this with countif. But it works with:
=SUMPRODUCT((A1:A4=”Heaven”)*(B1:B4=”and”)*(C1:C4=”Hell”))
This will just multiply the bool-results of the comparisons and sum them up.

That’s it.

Markus am 16.06.09 um 2:06 pm Uhr

Shocking words…

Windows



  |