

Studia grazie alle numerose risorse presenti su Docsity
Guadagna punti aiutando altri studenti oppure acquistali con un piano Premium
Prepara i tuoi esami
Studia grazie alle numerose risorse presenti su Docsity
Prepara i tuoi esami con i documenti condivisi da studenti come te su Docsity
Trova i documenti specifici per gli esami della tua università
Preparati con lezioni e prove svolte basate sui programmi universitari!
Rispondi a reali domande d’esame e scopri la tua preparazione
Riassumi i tuoi documenti, fagli domande, convertili in quiz e mappe concettuali
Studia con prove svolte, tesine e consigli utili
Togliti ogni dubbio leggendo le risposte alle domande fatte da altri studenti come te
Esplora i documenti più scaricati per gli argomenti di studio più popolari
Ottieni i punti per scaricare
Guadagna punti aiutando altri studenti oppure acquistali con un piano Premium
Dentro questo documento sono presenti le formule SUM, IF, SUMIF, NESTEDIF, MIN, MAX etc..
Tipologia: Appunti
1 / 2
Questa pagina non è visibile nell’anteprima
Non perderti parti importanti!


=10 then display ‘Very experienced’ =5 then display ‘Experienced’ Otherwise (<5) then display “Not experienced” ▪ SUMIF: sum the values in a range IF the cells in another range meet a certain condition =SUMIF($B$3:$B$21, D4 , $C$3:$C$21) – sum the values in the $C$3:$C$21 range IF the corresponding cell in the $B$3:$B$21 range contains the same value as A35. ▪ VLOOKUP: perform a vertical lookup of data: search for a lookup value in the left-most column of a lookup array (which is a range, normally in a different table or sheet), and gives as output the fields contained in the column of the selected column_index_number = VLOOKUP (lookup_value, lookup_array, col_index_num, FALSE) =VLOOKUP(B3, client.csv!$A$2:$B$8, 2, FALSE) Remember that the result of a formula or function is a number or text, which can be used in other calculations. Example: =10 + IF(A1>1, 5 , A12) means that the result of the IF function will be added to 10, so if A1 contains a number greater than 1 (the logical test / criteria ), THEN the result will be 10 + 5 (the value if true ), OTHERWISE the result will be 10 + A12 (the value if false ). ❖ CONDITIONAL FORMATTING