Home 〉 MS Excel Tutorials 〉 Excel Intermediate Formulas and Functions | IF, COUNTIF, SUMIF, Logical, Text & Date Functions
Excel Intermediate Formulas and Functions | IF, COUNTIF, SUMIF, Logical, Text & Date Functions !
Want to take your Excel skills to the next level? This post explains how to use important intermediate Excel functions like IF, COUNTIF, SUMIF, along with useful logical, text, and date functions that simplify data analysis. You'll also learn about named ranges to make your formulas cleaner and easier to manage. Each function is explained with simple examples so you can learn step-by-step. These are powerful tools for anyone working with Excel regularly. The complete tutorial is as follows:
Already familiar with basic Excel formulas? Now it's time to level up. Intermediate Excel functions allow you to analyze data more dynamically and automate complex logic. In this tutorial, we'll cover essential functions like IF, COUNTIF, and SUMIF, explore logical, text, and date functions, and learn how to use named ranges. Whether you're working with conditional logic or formatting large datasets, these tools will make your Excel tasks easier and faster.
The IF function returns one value if a condition is TRUE and another if it's FALSE.
=IF(A1>50, "Pass", "Fail")
This checks if A1 is greater than 50. If true, it returns “Pass”; otherwise, “Fail”.
The COUNTIF function counts cells that meet a condition.
=COUNTIF(B1:B10, ">50")
This counts how many values in range B1 to B10 are greater than 50.
The SUMIF function adds values based on a condition.
=SUMIF(C1:C10, "<100")
Adds all values in C1 to C10 that are less than 100.
=AND(A1>0, B1<100) returns TRUE if both conditions are true.=OR(A1>0, B1<100) returns TRUE if either condition is true.=NOT(A1=10) returns TRUE if A1 is not 10.=CONCAT(A1, B1) combines values.=LEFT(A1, 3) gets first 3 characters.=LEN(A1) counts characters in a cell.=TRIM(A1) removes extra spaces.=TODAY() returns current date.=NOW() returns current date and time.=DATEDIF(A1, A2, "D") returns difference in days.Named ranges help simplify your formulas and improve clarity. Instead of using a range like A1:A10, you can assign a name like SalesData to it.
Now you can use it in formulas like:
=SUM(SalesData)
Intermediate Excel functions allow you to do much more than basic calculations. From condition-based logic using IF, COUNTIF, and SUMIF, to smart data handling using logical, text, and date functions, your spreadsheets become more dynamic. With named ranges, your formulas also become easier to read and manage. Mastering these features will help you handle data smarter and faster in your day-to-day Excel work.
Learn more about Excel functions on the official Microsoft Excel Wikipedia page.
The IF function checks a condition and returns one value if true, and another if false. For example: =IF(A1>50, "Pass", "Fail").
COUNT counts all numeric values, while COUNTIF counts only the cells that meet a specific condition.
A named range gives a name to a cell or range of cells, making formulas easier to read and manage.
Use the TRIM function: =TRIM(A1) to remove extra spaces from a cell.
Use =TODAY() to get the current date. It updates automatically each day.