TGTGInsighttelegram intelligenceLIVE / telegram public index
← Data Analytics
Data Analytics avatar

TGINSIGHT POST

Post #1744

@sqlspecialist

Data Analytics

Views4,840Post view count
PostedJun 906/09/2025, 06:11 AM
Post content

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