Excel is a powerful tool for data analysis, offering a wide range of functions that can help you manipulate, analyze, and visualize data efficiently. Below are some of the most common Excel formulas that are essential for data analysis.
Basic Statistical Functions
SUM
Purpose: Adds up a range of numbers.
Formula: =SUM(A1:A10)
AVERAGE
Purpose: Calculates the average of a group of numbers.
Formula: =AVERAGE(B1:B10)
COUNT
Purpose: Counts the number of cells that contain numbers.
Formula: =COUNT(C1:C10)
COUNTA
Purpose: Counts the number of cells that are not empty.
Formula: =COUNTA(D1:D10)
MAX
Purpose: Finds the maximum value in a range.
Formula: =MAX(E1:E10)
MIN
Purpose: Finds the minimum value in a range.
Formula: =MIN(F1:F10)
Logical Functions
IF
Purpose: Performs a logical test and returns one value for a TRUE result, and another for a FALSE result.
Formula: =IF(G1>10, "High", "Low")
AND
Purpose: Returns TRUE if all its arguments evaluate to TRUE.
Formula: =AND(H1>10, H2<20)
OR
Purpose: Returns TRUE if any argument evaluates to TRUE.
Formula: =OR(I1="Yes", I2="No")
Lookup Functions
VLOOKUP
Purpose: Looks for a value in the first column of a table and returns a value in the same row from a specified column.
Formula: =VLOOKUP(J2, J1:K10, 2, FALSE)
HLOOKUP
Purpose: Searches for a value in the top row of a table and returns a value in the same column from a specified row.
Formula: =HLOOKUP(K2, L1:M10, 2, FALSE)
INDEX and MATCH
Purpose: Combined use offers more flexibility than VLOOKUP or HLOOKUP.
Formula: =INDEX(N1:N10, MATCH(O1, O1:O10, 0))
Text Functions
CONCATENATE (or CONCAT)
Purpose: Joins two or more text strings into one string.
Formula: =CONCATENATE(P1, " ", P2)
LEFT, RIGHT, MID
Purpose: Extracts a substring from a string.
LEFT Formula: =LEFT(Q1, 3)
RIGHT Formula: =RIGHT(R1, 2)
MID Formula: =MID(S1, 2, 4)
Date and Time Functions
TODAY
Purpose: Returns the current date.
Formula: =TODAY()
NOW
Purpose: Returns the current date and time.
Formula: =NOW()
DATEDIF
Purpose: Calculates the difference between two dates.
Formula: =DATEDIF(T1, T2, "D")
Advanced Functions
SUMIFS
Purpose: Adds up cells that meet multiple criteria.
Formula: =SUMIFS(U1:U10, V1:V10, ">10", W1:W10, "<5")
AVERAGEIFS
Purpose: Calculates the average for cells that meet multiple criteria.
Formula: =AVERAGEIFS(X1:X10, Y1:Y10, ">0", Z1:Z10, "<100")
By mastering these formulas, you can significantly enhance your data analysis capabilities in Excel, making it easier to draw insights and conclusions from your data.
.jpg)
Aucun commentaire:
Enregistrer un commentaire