


















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
An overview of the different ribbons in MS Excel, including Home, Insert, Page Layout, Formulas, and Data. It also covers statistical functions, cell referencing, named ranges, and IF functions. examples and exercises to help students practice using these functions.
Typology: Exams
1 / 26
This page cannot be seen from the preview
Don't miss anything!
- (^) Home Ribbon: Contains many tools
Useful when entering calculations. Contains:
Function Wizard : a short-cut to all functions in Excel Use fx toolbar button) that walks you through building a function Common Functions:
e.g. COUNT/COUNTA e.g. SUM/AVERAGE/MIN/MAX Round Function: Syntax: =ROUND(number, num digits) number: number to be rounded num digits: number of decimal places e.g. COUNT: only count the numbers in the specific range COUNTA: count cells that are not blank in the specific range
Named Ranges: A range of cells that are named and used instead of the cell reference when using a calculation or function. (treated as an absolute cell reference) e.g.
Counts the number of items in a range that meet a specific criteria. =COUNTIF(range, criteria) Range: A continuous range Criteria: Determines what cells to count e.g. COUNTIF Function Syntax e.g.
Sums a range (using multiple criteria and multiple ranges) that meet a specific criteria All criterion must be true in order for the cell to be summed =SUMIFS(sum_range, criteria_range1,criteria1,[criteria_range2,criteria2], …) Sum_Range: Range to sum if criterion are met Criteria_Range1: Range of first criteria Criteria1: Criteria for range Criteria syntax rules the same as COUNTIF e.g.
Averages the number of items in a range that meet a specific criteria =AVERAGEIF(criteria_range, criteria,[average_range]) e.g.
Averages a range (using multiple criteria and multiple ranges) that meet a specific criteria =AVERAGEIFS(average_range, criteria_range1,criteria1[criteria_range2,criteria2], …) All criterion must be true in order for the cell to be averaged. e.g. G10=AVERAGEIFS(C6:C9,B6:B9,B2,C6:C9,”<"&G2)
Returns the largest value in a range, based on the “k” argument =LARGE(array, k) Array: A continuous range k: The position (from the largest) in the array (range)
Returns the smallest value in a range, based on the “k” argument =SMALL(array, k) Array: A continuous range k: The position (from the smallest) in the array (range) e.g.
Return or display the Boolean value TRUE or FALSE Syntax example: Boolean Functions
1. =AND(logical1, [logical2], …) Returns TRUE if all arguments evaluate to true
2. =OR(logical1, [logical2], …) Returns TRUE if at least one argument evaluates to true 3. =NOT(logical) Changes FALSE to TRUE and TRUE to FALSE
Answer: =AND(Trips!B3>0,Trips!C3>0,Trips!D3>0,)