Meghana M.’s Post

View profile for Meghana M., graphic

Microsoft Certified Power BI Developer at Tata Consultancy Services

🚀 Mastering Excel: Essential Functions for Data Analysis 📊 Whether you're crunching numbers, cleaning data, or preparing reports, Excel functions are your best friend. Here are some essential functions MAX/MIN: Need to find the highest or lowest sales figure in a month? Example: =MAX(B2:B31) gives you the maximum sales in January. Syntax: =MAX(range) / =MIN(range) IF/IFS: Want to categorize your data? Example: =IF(A2>=70, "Pass", "Fail") checks if a student passes based on their score. Syntax: =IF(logical_test, value_if_true, value_if_false) / =IFS(condition1, value1, [condition2, value2], ...) LEN: Counting characters in a string? Example: =LEN(A2) tells you the number of characters in a product code. Syntax: =LEN(text) LEFT/RIGHT: Extract specific parts of text. Example: =LEFT(A2, 5) gets the first 5 characters of a product ID. Syntax: =LEFT(text, num_chars) / =RIGHT(text, num_chars) DATE to TEXT: Convert dates to readable text. Example: =TEXT(TODAY(), "MMMM YYYY") formats today’s date as "August 2024". Syntax: =TEXT(value, format_text) TRIM: Clean up extra spaces. Example: =TRIM(A2) removes unnecessary spaces from a customer name. Syntax: =TRIM(text) CONCATENATE: Combine text from different cells. Example: =CONCATENATE(A2, " ", B2) joins first and last names into a full name. Syntax: =CONCATENATE(text1, [text2], ...) SUBSTITUTE: Replace text within a string. Example: =SUBSTITUTE(A2, "Old", "New") replaces "Old" with "New" in a product name. Syntax: =SUBSTITUTE(text, old_text, new_text, [instance_num]) SUM/SUMIF/SUMIFS: Calculate totals with conditions. Example: =SUMIF(A2:A10, ">1000", B2:B10) sums sales over $1000. Syntax: =SUM(range) / =SUMIF(range, criteria, [sum_range]) / =SUMIFS(sum_range, criteria_range1, criteria1, ...) COUNT/COUNTIF/COUNTIFS: Count cells based on criteria. Example: =COUNTIF(B2:B10, "Pass") counts the number of students who passed. Syntax: =COUNT(range) / =COUNTIF(range, criteria) / =COUNTIFS(criteria_range1, criteria1, ...) DAYS/NETWORKDAYS: Calculate the difference between dates. Example: =NETWORKDAYS(A2, B2) calculates working days between project start and end dates. Syntax: =DAYS(end_date, start_date) / =NETWORKDAYS(start_date, end_date, [holidays]) 💡 Pro Tip: Combine these functions to perform complex data analysis and streamline your workflow. How do you use these functions in your daily tasks? Share your tips in the comments!👇 #Excel #DataAnalysis #Productivity #DataScience #MicrosoftExcel #Learning

To view or add a comment, sign in

Explore topics