Search results
Over 1000 working Excel formulas with detailed explanations, videos, and related links. Includes key functions like VLOOKUP, XLOOKUP, INDEX & MATCH, FILTER, RANK, ROUND, AVERAGE, COUNTIFS, SUMIFS, UNIQUE, SORT, TEXTSPLIT, and more.
To use Excel with confidence, you must have a good understanding of formulas and functions. This article introduces the basic concepts you need to know to be proficient with formulas in Excel. Formulas and functions are the bread and butter of Excel.
Excel contains over 500 functions, with more functions added every year. That is a huge number, so where should you start? This guide provides a walkthrough of over 100 important functions in Excel with many examples and links. Click function names for details and more examples.
Over 350 built-in functions, with examples and videos. VLOOKUP, XLOOKUP, INDEX & MATCH, FILTER, RANK, SUMPRODUCT, AVERAGE, COUNTIFS, SUMIFS, UNIQUE, SORT, TEXTSPLIT, SEQUENCE, FIND, DATE, and more. See also 500 Formulas, 101 Functions, and New Excel Functions.
Apr 14, 2021 · This document contains a brief overview of about 100 important Excel functions you should know, with links to detailed examples. It is based on a more complete list of Excel functions here. Excel Function List We also have a large list of example formulas and video training. If you are
In the example shown, a nested IF formula is used to assign a grade to a score. The formula in D5 contains 4 separate IF functions: =IF(C5 The IF function can be nested inside of itself to handle multiple conditions.
To calculate a percentage of a number in Excel, multiply the percentage by the number. In the example shown, the formula in E5, copied down, is: =$B$5*D5 As the formula is copied down, the results in column E correspond to the percentages in column D. Note percentages must be formatted with the percentage number format, as explained below.
The IFS function is designed to handle multiple options without nesting. The VLOOKUP function can handle many options with a simple formula. To test a condition, and take one action if the condition is TRUE, and another action if the condition is FALSE, you can use the IF function.
To calculate the number of hours between two times, you can use a formula that subtracts the start time from the end time, with conditional logic provided by the IF function to handle the case where start and end times cross midnight.
If cell contains. To return a custom result when a cell contains specific text, add the IF function like this: = IF (ISNUMBER (SEARCH (substring,A1)), "Yes", "No") Instead of returning TRUE or FALSE, the formula above will return "Yes" if the substring is found and "No" if not.