Study Excel
Study Excel
Values
C4 5
C5 2
To Add 7
To Subtract 3
To Multiply 10
To Divide 2.5
SUMIF function
60 30 60
sum of amount which
is greater than 10 which has cars item Amount for which the Interest is greater than 10
SUMIFS function
20 30
Sum of Quantity sold
is starts with A named product and sales person as TOM is not a bannana and sales person is TOM
SUMSQ function
Sum of Square of values
25
COUNTIF
=COUNTIF(Where do you want to look?, What do you want to look for?)
Data Data
apples 32
oranges 54
peaches 75
apples 86
2 2 3
number of cells with number of cells with
apples match with B62 SUM of 2 countif results
1 4 2
a value greater than
(>) or equal to (=) 32 The asterisk (*) -
and less than (<) or wildcard character to Counts the number of cells that have exactly 7 characters,
equal to (=) 85 match any character and end with the letters "es" in cells. The question mark (?)
COUNT IFS
COUNTA
Count a non blank cells
Data
39790
19
22.24
#DIV/0!
IF Functions
MARK GRADE
93 A
89 B
71 C
60 D
58 F
A A
NESTED IFS
LINK TO REFER IF function – nested formulas and avoiding pitfalls - Microsoft Support
VLOOKUPS
=VLOOKUP(What you want to look up, where you want to look for it, the column number in the range containing t
Results Descriptions
OLIVIER VERTICALLY CHECKS FOR C126 PERSONS FIRST NAME
FONTANA VERTICALLY CHECKS FOR 102S LAST NAME
NOT MATCHES CHECKS FOR 103 LAST NAME IS SOUSA AND PRINT NOT MATCHES / MATCHES
69 DATE FUNCTION - USED TO ENTER DATE VALUE AND YEARFAC FUNCTION SUBTRACTS THE VLOOKUP VALUE (IE
EMPLOYEE NOT FO VLOOKUP THE VALUE AND IF THE VALUE IS NOT FOUND IE #N/A THEN ISNA CONVERTS #N/A INTO THE TEXT AS
RESULTS DESCRIPTIONS
4 Looks up "Axles" in row 1, and returns the value from row 2 that's in the same column
7 Looks up "Bearings" in row 1, and returns the value from row 3 that's in the same column
5 Looks up "B" in row 1, and returns the value from row 3 that's in the same column. Becau
11 Looks up "Bolts" in row 1, and returns the value from row 4 that's in the same column
c Looks up the number 3 in the three-row array constant, and returns the value from row 2
XLOOKUP
The XLOOKUP function searches a range or an array, and then returns the item corresponding to the first match it finds. If no m
=XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])
[if_not_found] - Optional
Where a valid match is not found, return the [if_not_found] text you supply, If a valid match is not found, and [if_n
[match_mode]
Optional
Specify the match type:
0 - Exact match. If none found, return #N/A. This is the default.
-1 - Exact match. If none found, return the next smaller item.
1 - Exact match. If none found, return the next larger item.
2 - A wildcard match where *, ?, and ~ have special meaning.
[search_mode] Optional
Specify the search mode to use:
1 - Perform a search starting at the first item. This is the default.
-1 - Perform a reverse search starting at the last item
2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, i
-2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted
12%
10% nearest greatest value
NESTED XLOOKUP
Uses a nested XLOOKUP function to perform both a vertical and horizontal match.
SUM OF X LOOKUPS
XMATCH function
we'll use XMATCH to determine an item's position within a list.
product name NOV TAX FEB TAX 3 used to check position of plastic
aluminum 10% 18% 2 ste? Used to check for first 3 lett
steel 11% 28%
plastic 12% 16%
iron 18% 10%
copper 28% 11%
metal 16% 12%
INDEX/XMATCH/XMATCH.
IRON FEB TAX #NAME?
COPPER NOV TAX #NAME?
INDEX The INDEX function returns a value or the reference to a value from within a table or range.
11% Value at the intersection of the second row and second column in the range
steel Value at the intersection of the second row and first column in the range
2 Value found in the first row, second column in the array. The array contains 1 and 2 in the first row and 3 and
4 Value found in the second row, second column in the array (same array as above).
Data
C258 1.333
C259 45
George 10
5 62
1.333 Valueof the reference in cell A2. The reference is to cell B2, which contains the value 1.333.
45 Value of the reference in cell A3. The reference is to cell B3, which contains the value 45.
#REF! Because cell B260 has the defined name "George," the reference to that defined name is to cell B4
62 Combines "c" with the value in 261, which is 5. This, in turn, refers to cell B5, which contains the va
EXCEL FUCTION
Excel functions (by category) - Microsoft Support
EXCEL SHORTCUTS
Keyboard shortcuts in Excel - Microsoft Support
n), then press ALT+ = then, Enter. This automatically enters SUM for you.
50 30
>55 The ampersand (&) merges the comparison operator for not equal to (<>) and the value in C62
2 Counts the number of cells that apple and ? Indicates after apple it may end with the any letter.
-f74e-4aee-88bc-aa8c2a866842
er in the range containing the value to return, return an Approximate or Exact match – indicated as 1/TRUE, or 0/FALSE).
SUBTRACTS THE VLOOKUP VALUE (IE A DATE) AND PROVIDE A RETURNS A VALUE WHICH THEN CONVERTED TO INTEGER BY INT FUNCTION
A CONVERTS #N/A INTO THE TEXT AS MENTIONED
's in the same column. Because an exact match for "B" is not found(due to True is mentioned (not exact match), the largest value in row 1 that is less tha
that's in the same column
returns the value from row 2 in the same (in this case, third) column. There are three rows of values in the array constant, each row separated by a semi
the first match it finds. If no match exists, then XLOOKUP can return the closest (approximate) match.
earch_mode])
n the range
nstant, each row separated by a semicolon (;). Because "c" is found in row 2 and in the same column as 3, "c" is returned.