Post content
Essential Excel Functions for Data Analysts π 1οΈβ£ Basic Functions SUM() β Adds a range of numbers. =SUM(A1:A10) AVERAGE() β Calculates the average. =AVERAGE(A1:A10) MIN() / MAX() β Finds the smallest/largest value. =MIN(A1:A10) 2οΈβ£ Logical Functions IF() β Conditional logic. =IF(A1>50, "Pass", "Fail") IFS() β Multiple conditions. =IFS(A1>90, "A", A1>80, "B", TRUE, "C") AND() / OR() β Checks multiple conditions. =AND(A1>50, B1<100) 3οΈβ£ Text Functions LEFT() / RIGHT() / MID() β Extract text from a string. =LEFT(A1, 3) (First 3 characters) =MID(A1, 3, 2) (2 characters from the 3rd position) LEN() β Counts characters. =LEN(A1) TRIM() β Removes extra spaces. =TRIM(A1) UPPER() / LOWER() / PROPER() β Changes text case. 4οΈβ£ Lookup Functions VLOOKUP() β Searches for a value in a column. =VLOOKUP(1001, A2:B10, 2, FALSE) HLOOKUP() β Searches in a row. XLOOKUP() β Advanced lookup replacing VLOOKUP. =XLOOKUP(1001, A2:A10, B2:B10, "Not Found") 5οΈβ£ Date & Time Functions TODAY() β Returns the current date. NOW() β Returns the current date and time. YEAR(), MONTH(), DAY() β Extracts parts of a date. DATEDIF() β Calculates the difference between two dates. 6οΈβ£ Data Cleaning Functions REMOVE DUPLICATES β Found in the "Data" tab. CLEAN() β Removes non-printable characters. SUBSTITUTE() β Replaces text within a string. =SUBSTITUTE(A1, "old", "new") 7οΈβ£ Advanced Functions INDEX() & MATCH() β More flexible alternative to VLOOKUP. TEXTJOIN() β Joins text with a delimiter. UNIQUE() β Returns unique values from a range. FILTER() β Filters data dynamically. =FILTER(A2:B10, B2:B10>50) 8οΈβ£ Pivot Tables & Power Query PIVOT TABLES β Summarizes data dynamically. GETPIVOTDATA() β Extracts data from a Pivot Table. POWER QUERY β Automates data cleaning & transformation. You can find Free Excel Resources here: https://t.me/excel_data Hope it helps :) #dataanalytics