Author name: Rishabh Mantri

AND function

Use the AND function, one of the logical functions, to determine if all conditions in a test are TRUE. Example Technical Details Examples Here are some general examples of using AND by itself, and in conjunction with the IF function. Formula Description =AND(A2>1,A2<100) Displays TRUE if A2 is greater than 1 AND less than 100, otherwise it displays FALSE. =IF(AND(A2<A3,A2<100),A2,”The value is out of […]

AND function Read More »

IFS function

The IFS function checks whether one or more conditions are met, and returns a value that corresponds to the first TRUE condition. IFS can take the place of multiple nested IF statements, and is much easier to read with multiple conditions. Simple syntax Generally, the syntax for the IFS function is: =IFS([Something is True1, Value

IFS function Read More »

IF function

The IF function is one of the most popular functions in Excel, and it allows you to make logical comparisons between a value and what you expect. So an IF statement can have two results. The first result is if your comparison is True, the second if your comparison is False. For example, =IF(C2=”Yes”,1,2) says

IF function Read More »

SUMIFS function

The SUMIFS function, one of the math and trig functions, adds all of its arguments that meet multiple criteria. For example, you would use SUMIFS to sum the number of retailers in the country who (1) reside in a single zip code and (2) whose profits exceed a specific dollar value. Syntax SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2,

SUMIFS function Read More »

SUMIF function

You use the SUMIF function to sum the values in a range that meet criteria that you specify. For example, suppose that in a column that contains numbers, you want to sum only the values that are larger than 5. You can use the following formula: =SUMIF(B2:B25,”>5″) Important: The SUMIF function returns incorrect results when you use it to

SUMIF function Read More »

SUM function

The SUM function adds values. You can add individual values, cell references or ranges or a mix of all three. For example: Syntax: SUM(number1,[number2],…) Argument name Description number1   Required The first number you want to add. The number can be like 4, a cell reference like B6, or a cell range like B2:B8. number2-255   Optional This is the second

SUM function Read More »

CLEAN function

This article describes the formula syntax and usage of the CLEAN function in Microsoft Excel. Description Removes all nonprintable characters from text. Use CLEAN on text imported from other applications that contains characters that may not print with your operating system. For example, you can use CLEAN to remove some low-level computer code that is frequently at

CLEAN function Read More »

TRIM function

This article describes the formula syntax and usage of the TRIM function in Microsoft Excel. Description Removes all spaces from text except for single spaces between words. Use TRIM on text that you have received from another application that may have irregular spacing. Important: The TRIM function was designed to trim the 7-bit ASCII space character (value 32)

TRIM function Read More »