Conteggia celle selezionate se la cella della stessa riga corrisponde allo stato in Numeri

1

Seguendo da la mia domanda precedente , registro anche quale registrazione registra una competizione. Questi sono attualmente registrati come caselle di controllo. Contarli tutti è abbastanza facile; Semplicemente uso la seguente funzione:

=COUNTIF(Stevne?;TRUE)

Tuttavia, voglio anche contare le gare specifiche per un tipo di arma da fuoco.

Quello che ho ottenuto finora è:

=COUNTIF(Stevne?;TRUE;AND(Type:"Pistol"))

Questo, purtroppo, restituisce un errore di sintassi e non riesco a capire perché.

    
posta razumny 06.09.2015 - 22:16
fonte

1 risposta

1

Hai bisogno della funzione COUNTIFS() .

Quindi in questo caso:

=COUNTIFS («gun range», true, «Firearm», "Pistol")

Contabilità per delimitatori ; :

=COUNTIFS («gun range»; true; «Firearm»; "Pistol")

Dall'aiuto:

The COUNTIFS function returns the number of cells in one or more collections that satisfy given conditions (one condition per collection).

COUNTIFS(test-values, condition, test-values…, condition…)

test-values: A collection containing values to be tested. test-values can contain any value.

condition: An expression that can include comparison operators, constants, the ampersand concatenation operator, and references. The contents of the condition must be such that the result of comparing the condition to another value results in the boolean value of TRUE or FALSE.

test-values…: Optionally include one or more additional collections containing values to be tested. Each test-values collection must be followed immediately by a condition expression. This pattern of test-values, condition can be repeated as many times as needed.

condition…: If an optional collection of test-values is included, an additional expression that results in a boolean TRUE or FALSE. There must be one condition expression following each test-values collection; therefore, this function will always have an odd number of arguments.

Notes

Each value in test-values is compared to the corresponding condition. If the corresponding values in each collection meet the corresponding conditional tests, the count is increased by 1.

    
risposta data 06.09.2015 - 22:56
fonte

Leggi altre domande sui tag