Formules et fonctions Excel

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Quelle formule Excel est incorrecte?

  • =SUM(A1:A5)
  • A1+B1 (correct)
  • =A1+B1
  • =AVERAGE(A1:A5)

Une référence de cellule absolue dans Excel change automatiquement lorsqu'une formule est copiée dans une autre cellule.

False (B)

Quel opérateur Excel est utilisé pour l'exponentiation?

^

La fonction Excel _______ renvoie la date et l'heure actuelles.

<p>NOW</p>
Signup and view all the answers

Associez les fonctions Excel suivantes à leur description:

<p>SUM = Additionne les valeurs dans une plage. AVERAGE = Calcule la moyenne des valeurs dans une plage. MAX = Retourne la valeur la plus élevée dans une plage. MIN = Retourne la valeur la plus basse dans une plage.</p>
Signup and view all the answers

Quelle fonction Excel est utilisée pour rechercher une valeur dans une colonne et retourner une valeur correspondante d'une autre colonne?

<p>VLOOKUP (B)</p>
Signup and view all the answers

La fonction COUNTIF peut uniquement compter des nombres, pas du texte.

<p>False (B)</p>
Signup and view all the answers

Quelle fonction Excel est utilisée pour extraire un nombre spécifique de caractères à partir du début d'une chaîne de texte?

<p>LEFT</p>
Signup and view all the answers

La fonction Excel _______ convertit une chaîne de texte en majuscules.

<p>UPPER</p>
Signup and view all the answers

Quelle fonction logique Excel renvoie VRAI si au moins un de ses arguments est VRAI?

<p>OR (C)</p>
Signup and view all the answers

Les formules de tableau doivent être entrées en appuyant sur Ctrl + Alt + Enter.

<p>False (B)</p>
Signup and view all the answers

Quelle fonctionnalité d'Excel permet de voir quelles cellules sont utilisées dans une formule?

<p>Tracer les précédents</p>
Signup and view all the answers

L'erreur Excel _____ se produit lors d'une tentative de division par zéro.

<p>#DIV/0!</p>
Signup and view all the answers

Quelle fonction renvoie la racine carrée d'un nombre?

<p>SQRT (A)</p>
Signup and view all the answers

La fonction CONCATENATE peut être utilisée pour joindre plusieurs chaînes de texte en une seule.

<p>True (A)</p>
Signup and view all the answers

Quelle fonction Excel est utilisée pour arrondir un nombre au nombre entier le plus proche?

<p>ROUND</p>
Signup and view all the answers

La fonction _____ renvoie la valeur future d'un investissement.

<p>FV</p>
Signup and view all the answers

Quelle est l'utilisation de la fonction PMT?

<p>Calculer le paiement périodique d'une annuité. (C)</p>
Signup and view all the answers

Les références mixtes dans Excel ne sont pas valides et provoqueront une erreur.

<p>False (B)</p>
Signup and view all the answers

Quelle erreur se produit si une cellule n'est pas assez large pour afficher sa valeur?

<h5>(B)</h5>
Signup and view all the answers

Flashcards

Formules Excel

Expressions qui effectuent des calculs sur les valeurs d'une feuille de calcul.

Fonctions Excel

Formules prédéfinies qui effectuent des calculs spécifiques.

Constantes dans Excel

Nombres ou textes directement entrés dans une formule.

Références de cellule

Référence à la valeur d'une cellule spécifique (ex: A1, B2).

Signup and view all the flashcards

Opérateurs

Type de calcul à effectuer (+, -, *, /, ^).

Signup and view all the flashcards

Références relatives

Ajustent lorsque la formule est copiée.

Signup and view all the flashcards

Références absolues

Restent constantes, quel que soit l'endroit où la formule est copiée.

Signup and view all the flashcards

Références mixtes

Combinaison d'une référence relative et absolue.

Signup and view all the flashcards

Opérateur +

Addition en Excel.

Signup and view all the flashcards

Opérateur *

Multiplication en Excel.

Signup and view all the flashcards

Opérateur /

Division en Excel.

Signup and view all the flashcards

Opérateur ^

Élévation à une puissance en Excel.

Signup and view all the flashcards

Fonction SI

Vérifie une condition et retourne une valeur si VRAI, sinon une autre.

Signup and view all the flashcards

Fonction RECHERCHEV

Recherche une valeur dans la première colonne d'une table et retourne une valeur de la même ligne depuis une colonne spécifiée.

Signup and view all the flashcards

Fonction NB.SI

Compte le nombre de cellules répondant à une condition.

Signup and view all the flashcards

Fonction SOMME.SI

Additionne les valeurs répondant à un critère.

Signup and view all the flashcards

Fonction AUJOURDHUI

Retourne la date actuelle.

Signup and view all the flashcards

Fonction GAUCHE

Extrait des caractères du début d'un texte.

Signup and view all the flashcards

Fonction ABS

Retourne la valeur absolue d'un nombre.

Signup and view all the flashcards

Fonction ARRONDI

Arrondit un nombre au nombre de chiffres spécifié.

Signup and view all the flashcards

Study Notes

  • Excel formulas are expressions that perform calculations on values within a spreadsheet.
  • Excel functions are pre-defined formulas that perform specific calculations, simplifying complex operations.

Formula Basics

  • Formulas always begin with an equals sign (=).
  • After the equals sign, you enter constants, cell references, operators, and functions to create expressions.
  • Constants are numbers or text values entered directly into a formula.
  • Cell references refer to the value in a specific cell (e.g., A1, B2:B10).
  • Operators specify the type of calculation to perform (+, -, *, /, ^).

Cell References

  • Relative references adjust when a formula is copied to another cell (e.g., if you copy a formula with A1, it will change to A2, A3, etc.).
  • Absolute references remain constant, regardless of where the formula is copied – use the dollar sign ($) to fix a row or column (e.g., $A$1 remains A1).
  • Mixed references have one relative and one absolute part (e.g., $A1 or A$1).

Operators

  • Arithmetic operators: + (addition), - (subtraction), * (multiplication), / (division), ^ (exponentiation).
  • Comparison operators: = (equal to), > (greater than), < (less than), >= (greater than or equal to), <= (less than or equal to), <> (not equal to).
  • Text concatenation operator: & (joins text strings together).
  • Reference operators: : range Operator, , union Operator.

Order of Operations

  • Excel follows the standard order of operations: Parentheses, Exponents, Multiplication and Division, Addition and Subtraction (PEMDAS).
  • Use parentheses to control the order of calculations.

Common Functions

  • SUM: Adds values in a range of cells (e.g., =SUM(A1:A10)).
  • AVERAGE: Calculates the average of values in a range of cells (e.g., =AVERAGE(A1:A10)).
  • COUNT: Counts the number of cells in a range that contain numbers (e.g., =COUNT(A1:A10)).
  • COUNTA: Counts the number of cells in a range that are not empty (e.g., =COUNTA(A1:A10)).
  • MAX: Returns the largest value in a range of cells (e.g., =MAX(A1:A10)).
  • MIN: Returns the smallest value in a range of cells (e.g., =MIN(A1:A10)).
  • IF: Performs a logical test and returns one value if true, and another value if false (e.g., =IF(A1>0, "Positive", "Negative")).
  • VLOOKUP: Searches for a value in the first column of a table and returns a value in the same row from a specified column (e.g., =VLOOKUP(A1, B1:D10, 3, FALSE)).
  • HLOOKUP: Searches for a value in the first row of a table and returns a value in the same column from a specified row.
  • INDEX: Returns a value or the reference to a value from within a table or range.
  • MATCH: Searches for a specified item in a range of cells, and then returns the relative position of that item in the range.
  • COUNTIF: Counts the number of cells within a range that meet a given condition (e.g., =COUNTIF(A1:A10, ">5")).
  • SUMIF: Sums the values in a range that meet a given criterion (e.g., =SUMIF(A1:A10, ">5", B1:B10)).
  • AVERAGEIF: Finds the average of the values in a range that meet a given criterion.
  • AND: Returns TRUE if all its arguments are TRUE.
  • OR: Returns TRUE if any argument is TRUE.
  • NOT: Reverses the logic of its argument.

Date and Time Functions

  • TODAY: Returns the current date.
  • NOW: Returns the current date and time.
  • DATE: Returns the serial number of a particular date.
  • TIME: Returns the serial number of a particular time.
  • YEAR: Returns the year of a date.
  • MONTH: Returns the month of a date.
  • DAY: Returns the day of a date.

Text Functions

  • LEFT: Extracts a specified number of characters from the beginning of a text string.
  • RIGHT: Extracts a specified number of characters from the end of a text string.
  • MID: Extracts a specified number of characters from a text string, starting at a specified position.
  • LEN: Returns the number of characters in a text string.
  • UPPER: Converts a text string to uppercase.
  • LOWER: Converts a text string to lowercase.
  • PROPER: Converts a text string to proper case (first letter of each word capitalized).
  • TRIM: Removes extra spaces from a text string.
  • CONCATENATE: Joins several text strings into one text string.
  • TEXT: Formats a value as text in a specific format.
  • FIND: Finds one text string within another (case-sensitive).
  • SEARCH: Finds one text string within another (not case-sensitive).
  • REPLACE: Replaces part of a text string with a different text string.
  • SUBSTITUTE: Substitutes new text for old text in a text string.

Logical Functions

  • Used to perform logical tests and make decisions based on the results.
  • IF function: Checks a condition and returns one value if the condition is true, and another value if the condition is false.
  • AND function: Checks if all conditions are true.
  • OR function: Checks if at least one condition is true.
  • NOT function: Reverses the value of a condition.
  • TRUE function: Returns the logical value TRUE.
  • FALSE function: Returns the logical value FALSE.
  • IFS function: Checks multiple conditions.

Lookup and Reference Functions

  • Used to find and retrieve data from tables or ranges.
  • VLOOKUP function: Searches for a value in the first column of a table and returns a value in the same row from a specified column.
  • HLOOKUP function: Searches for a value in the first row of a table and returns a value in the same column from a specified row.
  • INDEX function: Returns a value or the reference to a value from within a table or range.
  • MATCH function: Searches for a specified item in a range of cells, and then returns the relative position of that item in the range.
  • CHOOSE function: Chooses a value from a list of values based on an index number.
  • INDIRECT function: Returns the reference specified by a text string.

Math and Trigonometry Functions

  • ABS: Returns the absolute value of a number.
  • INT: Returns the integer part of a number.
  • ROUND: Rounds a number to a specified number of digits.
  • ROUNDUP: Rounds a number up to the nearest integer or specified number of digits.
  • ROUNDDOWN: Rounds a number down to the nearest integer or specified number of digits.
  • MOD: Returns the remainder after a number is divided by a divisor.
  • SQRT: Returns the square root of a number.
  • RAND: Returns a random number between 0 and 1.
  • RANDBETWEEN: Returns a random integer between two specified numbers.
  • SUMPRODUCT: Multiplies corresponding components in the given arrays, and returns the sum of those products.
  • AGGREGATE: Applies different aggregate functions to a list or database.
  • SUBTOTAL: Returns a subtotal in a list or database.

Statistical functions

  • AVERAGE: Returns the average of its arguments.
  • MEDIAN: Returns the median of the given numbers.
  • MODE: Returns the most frequently occurring, or repetitive, value in an array or range of data.
  • STDEV: Estimates standard deviation based on a sample. The standard deviation is a measure of how widely dispersed the values are from the average value (the mean).
  • VAR: Estimates variance based on a sample.

Financial Functions

  • PV: Returns the present value of an investment.
  • FV: Returns the future value of an investment.
  • PMT: Returns the periodic payment for an annuity.
  • RATE: Returns the interest rate per period of an annuity.
  • NPER: Returns the number of periods for an investment.

Array Formulas

  • Perform calculations on multiple values at once.
  • To enter an array formula, press Ctrl + Shift + Enter.
  • Array formulas are enclosed in curly braces {}.
  • Can perform complex calculations that are difficult or impossible with standard formulas.

Formula Auditing

  • Excel provides tools for auditing formulas to identify errors and understand formula dependencies.
  • Trace precedents: Shows which cells are used in a formula.
  • Trace dependents: Shows which formulas use a specific cell.
  • Error checking: Identifies common formula errors.
  • Evaluate formula: Steps through a formula calculation to show intermediate results.

Formula Errors

  • #DIV/0!: Occurs when dividing by zero.
  • #NAME?: Occurs when Excel doesn't recognize text in a formula.
  • #N/A: Occurs when a value is not available.
  • #REF!: Occurs when a cell reference is invalid.
  • #VALUE!: Occurs when the wrong type of argument is used in a function.
  • #####: Occurs when a cell is not wide enough to display the value.

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

More Like This

Microsoft Excel  - Formula and Cell Reference
29 questions
Excel Formulas and Formatting
15 questions
Use Quizgecko on...
Browser
Browser