Excel Practice Test

โ–ถ

Learning how to find an average on Excel is one of the most practical skills you can master, whether you are tallying student grades, tracking monthly sales, measuring quarterly KPIs, or analyzing survey responses. The AVERAGE function computes the arithmetic mean by summing a range of numbers and dividing by the count of numeric cells. It ignores text, logical values, and empty cells, which makes it forgiving for messy spreadsheets. With a single formula you can collapse hundreds of data points into one meaningful number.

Excel offers more than one way to calculate a mean. The basic AVERAGE function handles a flat list of numbers, AVERAGEIF applies a single condition such as averaging only the rows where region equals West, and AVERAGEIFS layers multiple criteria like region, product, and quarter at once. There is also AVERAGEA, which counts text values as zero, and SUMPRODUCT, which lets you build weighted averages where some numbers count more than others. Choosing the right function depends entirely on your data shape and your reporting question.

This guide walks through every method an analyst, student, or office worker needs, including the AutoSum drop-down shortcut, the status bar trick, conditional averaging, and weighted mean calculations. You will see real syntax, sample ranges, and troubleshooting tips for the common errors such as #DIV/0!, hidden zeros that drag averages down, and the silent inclusion of text cells. By the end, you will know which technique fits a flat list, a filtered dataset, a multi-criteria pivot, and a weighted grade book.

Most beginners discover the AVERAGE formula in the same week they learn SUM and COUNT, and that is a natural progression because all three live inside the AutoSum gallery on the Home tab. However, averages reveal subtleties that sums do not. A single blank cell behaves differently from a zero, a stray apostrophe can hide a number, and filtered rows are still counted by default. Understanding these quirks early will save you hours of debugging later and protect you from reporting misleading figures to a manager or client.

Excel skills compound quickly. Once you master averaging, you naturally move into related analytical tasks such as comparing means across cohorts, calculating moving averages for trend lines, and combining AVERAGE with IF arrays for advanced filtering. Many of these techniques rely on the same logical structure as the popular vlookup excel function, so the mental model you build here transfers directly to lookups, conditional sums, and statistical analysis. Treat the average as the gateway to a much larger toolbox of Excel functions.

Before you start typing formulas, take a moment to inspect your data. Are numbers stored as text? Are there merged cells in the range? Are blank cells truly empty or do they contain a space? Each of these conditions changes how AVERAGE behaves, sometimes silently. Throughout this guide we flag the gotchas so you can spot them before they distort a report. The goal is not just to produce a number, but to produce a number you can defend in a meeting.

Excel Averaging by the Numbers

๐Ÿ“Š
5+
Average Functions
โฑ๏ธ
<5 sec
AutoSum Speed
โœ…
255
Max Arguments
๐ŸŽฏ
127
Max Criteria Pairs
๐Ÿ’ป
100%
Compatibility
Test Your Skills: How to Find an Average on Excel Quiz

Average Methods at a Glance

๐Ÿ“Š AVERAGE Function

The core formula =AVERAGE(range) returns the arithmetic mean of all numeric cells in a range, ignoring text and blanks. Best for a flat list of numbers you trust.

โšก AutoSum Drop-Down

Click the AutoSum arrow on the Home tab and choose Average. Excel inserts the formula and guesses the adjacent range. Fastest path for casual users.

๐Ÿ‘€ Status Bar Preview

Select any range and look at the bottom-right status bar. Excel shows the average instantly without writing a formula. Great for quick checks during analysis.

๐ŸŽฏ AVERAGEIF / AVERAGEIFS

Add one or multiple criteria such as region, product, or date range. AVERAGEIF handles a single condition while AVERAGEIFS supports up to 127 criteria pairs.

โš–๏ธ Weighted Average

Combine SUMPRODUCT and SUM to weight values differently. Essential for grade books, portfolio returns, and any scenario where not every data point counts equally.

The AVERAGE function is the workhorse of Excel statistics. The syntax is simply =AVERAGE(number1, [number2], ...). You can pass individual cells like =AVERAGE(A1, A5, A9), a contiguous range like =AVERAGE(B2:B100), or even multiple disjoint ranges separated by commas. Excel evaluates each argument, extracts the numeric values, and divides their sum by the count of numbers found. Logical TRUE/FALSE inside a referenced range is ignored, but TRUE typed directly into the formula counts as 1.

To insert AVERAGE the quickest way, click a blank cell beneath your data, navigate to the Home tab, and find the AutoSum button on the far right of the ribbon. Click the small arrow next to it and pick Average. Excel proposes a range based on the contiguous numbers above your cell. Press Enter to accept or drag to adjust the selection. This same drop-down also contains Sum, Count Numbers, Max, and Min, making it the single most efficient ribbon control for everyday calculations.

Another lightning-fast technique uses no formula at all. Select any range of cells containing numbers and look at the status bar at the very bottom of the Excel window. By default it displays Average, Count, and Sum for the selected cells. Right-click the status bar to enable additional stats like Numerical Count, Minimum, and Maximum. This preview is perfect when you just need a one-off number for an email or a meeting and do not want to clutter your worksheet with throwaway formulas.

If your dataset has gaps, AVERAGE handles them gracefully by skipping blank cells entirely rather than treating them as zero. This is often what you want: averaging the months a salesperson actually worked rather than dragging the mean down with zeros for months on leave. However, if a cell contains a real zero, that zero is included in the calculation. Watch for cells that look blank but contain a formula returning an empty string; those count as text and are ignored, which can surprise unwary users.

For data that includes text labels you want counted as zero, switch to AVERAGEA. The syntax is identical, =AVERAGEA(range), but the behavior differs sharply: text values are counted as zero, FALSE is counted as zero, and TRUE is counted as one. This function is useful for survey data where blank means missing and text like Pending should pull the average toward zero. Most analysts never need AVERAGEA, but knowing it exists prevents confusion when results look off compared to a plain AVERAGE call.

Excel also lets you average across worksheets using a 3D reference. The formula =AVERAGE(Jan:Dec!B5) averages cell B5 across every sheet from Jan to Dec inclusive. This is incredibly powerful for monthly reporting workbooks where each tab has identical structure. The sheet names must appear in the workbook tab order, and any intervening sheets are included. Use a hidden helper sheet at each end of the range, often called Start and End, to lock down which sheets get aggregated even if new tabs get added later.

Finally, remember that AVERAGE respects filtered data only when you use SUBTOTAL or AGGREGATE. A plain =AVERAGE(B2:B100) on filtered rows still includes hidden values. To average only visible rows after filtering, use =SUBTOTAL(1, B2:B100) where 1 is the function number for AVERAGE. AGGREGATE goes further by ignoring errors and hidden rows together, syntax =AGGREGATE(1, 7, B2:B100). This distinction matters enormously when you build dashboards that respond to slicer or filter selections.

FREE Excel Basic and Advance Questions and Answers
Build core spreadsheet skills with 50+ practice questions across beginner and advanced topics.
FREE Excel Formulas Questions and Answers
Master AVERAGE, SUM, IF, and VLOOKUP formulas through targeted multiple-choice practice.

AVERAGEIF, AVERAGEIFS, and VLOOKUP Excel Pairings

๐Ÿ“‹ AVERAGEIF

AVERAGEIF averages the cells in a range that meet a single condition. The syntax is =AVERAGEIF(range, criteria, [average_range]). For example, =AVERAGEIF(B2:B100, "West", C2:C100) averages the sales in column C only for rows where column B equals West. The criteria argument accepts text in quotes, numbers, comparison operators like ">100", and wildcards like "North*" to capture North America and Northwest together. Always wrap operators and text in double quotes to avoid syntax errors.

The third argument is optional but powerful. If you omit it, Excel averages the range itself, which is useful for simple conditions like =AVERAGEIF(A2:A100, ">50"). When you provide the average_range, Excel evaluates criteria on the first range but pulls numbers from the second. Keep both ranges the same size and shape; mismatched dimensions used to cause errors in older Excel versions and still produce confusing results when ranges drift across rows during copy operations.

๐Ÿ“‹ AVERAGEIFS

AVERAGEIFS extends AVERAGEIF to multiple conditions, which is essential for real reporting. The syntax flips the argument order: =AVERAGEIFS(average_range, criteria_range1, criteria1, criteria_range2, criteria2, ...). Notice the average range comes first. You can layer up to 127 criteria pairs, mixing text, numbers, dates, and operators freely. A typical formula might read =AVERAGEIFS(D2:D1000, B2:B1000, "West", C2:C1000, ">=2026-01-01", C2:C1000, "<=2026-03-31").

All criteria must be true for a row to be included, meaning AVERAGEIFS performs an AND operation. To perform OR logic, you typically wrap multiple AVERAGEIFS calls inside a weighted SUMPRODUCT expression, or restructure your data with a helper column. Date criteria are particularly fussy: always reference a cell containing a real date or use the DATE function, never a string like "Jan 1 2026" which Excel may misinterpret depending on regional settings.

๐Ÿ“‹ With VLOOKUP

The vlookup excel function pairs beautifully with AVERAGEIF when you need to translate codes into categories before averaging. Suppose your raw data has product IDs but management wants averages by category. Add a helper column with =VLOOKUP(A2, ProductTable, 2, FALSE) to fetch the category, then run =AVERAGEIF(HelperRange, "Electronics", SalesRange) to compute the per-category mean. This separation of lookup logic from aggregation logic keeps formulas readable and easy to audit.

In modern Excel 365 you can replace VLOOKUP with XLOOKUP for cleaner syntax and left-to-right flexibility. Either way, the pattern is the same: enrich the data first, then average. Avoid the temptation to nest VLOOKUP directly inside AVERAGEIF; while technically possible with array formulas, the result is hard to debug and slow on large datasets. A clear helper column almost always outperforms a clever one-line formula in both speed and maintainability.

AVERAGE vs Manual Mean Calculation: Which Should You Use?

Pros

  • Computes results instantly on ranges with millions of rows
  • Automatically ignores blank cells and text values without manual cleanup
  • Updates dynamically when source data changes, eliminating stale figures
  • Supports conditional logic through AVERAGEIF and AVERAGEIFS variants
  • Integrates with named ranges and tables for self-documenting formulas
  • Works across worksheets via 3D references for monthly rollups
  • Pairs with filters, slicers, and pivot tables for interactive dashboards

Cons

  • Hidden text or numbers stored as text can silently distort results
  • Includes filtered or hidden rows unless you switch to SUBTOTAL or AGGREGATE
  • Cannot weight values without combining with SUMPRODUCT
  • Returns #DIV/0! when no numeric cells exist in the range
  • Counts zero values that may not reflect true business activity
  • Does not detect outliers; one extreme value can skew the mean significantly
FREE Excel Functions Questions and Answers
Practice AVERAGE, COUNT, IF, and dozens of other functions with instant scoring feedback.
FREE Excel MCQ Questions and Answers
Multiple-choice review covering ribbons, shortcuts, formulas, and data analysis fundamentals.

Step-by-Step Checklist: How to Find an Average on Excel

Select an empty cell directly below or beside your dataset for the result
Type =AVERAGE( to begin the formula and watch the ScreenTip appear
Click and drag to select the range, or type the range like B2:B100
Close the parenthesis and press Enter to display the calculated mean
Verify the result against the status bar preview at the bottom of the window
Format the cell with appropriate decimal places using Ctrl+Shift+1 or custom format
Check for numbers stored as text by looking for left-aligned values or green triangles
Replace AVERAGE with SUBTOTAL(1,range) if your data uses filters or hidden rows
Switch to AVERAGEIF when you need to apply one condition to the dataset
Use AVERAGEIFS for multiple criteria such as region plus date plus product
Use Tables for Self-Updating Averages

Convert your data range into an Excel Table using Ctrl+T before writing AVERAGE formulas. Tables automatically expand when you add new rows, so a formula like =AVERAGE(Sales[Revenue]) updates without manual range adjustment. This single habit prevents the most common reporting bug: averages that silently exclude the newest entries because someone forgot to extend the formula range after pasting fresh data into the workbook.

Even seasoned analysts run into errors when calculating averages, and most stem from data type mismatches rather than formula syntax. The most famous offender is #DIV/0!, which appears when AVERAGE finds no numeric cells in the supplied range. This happens after a filter hides every visible row, after a paste operation replaces numbers with text, or when you point AVERAGE at an entirely blank column. Wrap the formula in IFERROR like =IFERROR(AVERAGE(B2:B100), 0) to display a friendlier fallback in dashboards seen by executives.

Another silent killer is numbers stored as text. These cells look numeric but Excel treats them as labels, so AVERAGE skips them and your reported mean is computed from fewer rows than you expect. Spot them by their left alignment, a leading apostrophe in the formula bar, or a small green triangle in the corner. Fix the column by selecting it, clicking the warning icon, and choosing Convert to Number, or use the VALUE function in a helper column to coerce strings into real numbers.

Hidden rows are another classic trap. When a user filters the data or manually hides rows, the underlying values remain in the range, and AVERAGE happily includes them. Your visible numbers say one thing while the formula says another, leading to angry questions from stakeholders. Always use SUBTOTAL with function number 1, or AGGREGATE with function 1 and option 5 or 7, when you want averages that respect the current view of filtered or grouped data.

Outliers deserve their own warning. A single extreme value, like a typo entering 1,000,000 instead of 1,000, will distort the mean dramatically while barely budging the median. Before trusting any average, run a quick sanity check by sorting the data and inspecting the minimum and maximum cells. Excel offers TRIMMEAN as a defensive alternative; =TRIMMEAN(B2:B100, 0.1) discards the top and bottom 5 percent of values before averaging, providing a more robust central tendency for noisy datasets.

Watch out for circular references, especially when an AVERAGE formula accidentally includes its own cell. Excel will warn you with a status bar message, but the resulting zero or unstable value can cascade through dependent formulas. Always place totals and averages in cells outside the data range. If you must include them within a structured layout, use Table Total Rows which Excel manages safely, rather than typing the formula manually into a cell adjacent to the data.

Regional settings can also break formulas shared across teams. A formula written =AVERAGEIF(B:B, ">100", C:C) in the United States may fail in Europe if list separators differ; the semicolon replaces the comma in some locales. Similarly, decimal points become commas in many European versions, so a criteria string like ">1.5" might be interpreted as a date. Test shared workbooks on at least one machine with different regional settings before distributing them broadly.

Finally, beware of merged cells inside the range you are averaging. When you merge cells, Excel keeps the value only in the top-left cell of the merged group and treats the others as blank. The visual appearance suggests the value applies to the whole region, but AVERAGE counts only one instance. Avoid merged cells in any range that feeds calculations; use Center Across Selection from the alignment dialog instead, which produces the same visual effect without breaking formulas.

Weighted averages solve a problem that the plain AVERAGE function cannot: not every data point deserves equal influence. In a grade book, a final exam might count for 40 percent while weekly quizzes share the remaining 60 percent. In portfolio analysis, a $100,000 holding should outweigh a $1,000 holding when computing portfolio return. The formula combines SUMPRODUCT and SUM: =SUMPRODUCT(values, weights)/SUM(weights). This works because SUMPRODUCT multiplies pairs of cells and adds the results, while dividing by the sum of weights normalizes the figure back to a true mean.

To build a weighted grade calculator, list scores in column B and the weight of each assignment in column C, then enter =SUMPRODUCT(B2:B10, C2:C10)/SUM(C2:C10) in cell D1. If weights already sum to 1 or 100 percent you can skip the division, but explicit division makes the formula robust to typos and easier to audit. The same approach computes weighted moving averages for time series, weighted average cost of capital for finance, and weighted survey scores when respondents represent different population sizes.

Moving averages smooth out short-term volatility to reveal underlying trends. A simple seven-day moving average of daily sales is =AVERAGE(OFFSET(B2, -6, 0, 7, 1)) entered next to day seven and copied down. Excel 365 users can replace OFFSET with the cleaner =AVERAGE(INDEX(B:B, ROW()-6):B2). Pair moving averages with line charts to visualize trends, or feed them into a forecasting model. Many analysts find these techniques as transformative as learning how to merge cells in excel for the first time.

Geometric mean is a less common but vital cousin of the arithmetic average. Use GEOMEAN when averaging growth rates, investment returns, or ratios where multiplicative effects matter. The formula =GEOMEAN(B2:B11) returns the nth root of the product of n positive values. A fund that returns 10 percent, minus 5 percent, and 20 percent across three years has a true compound annual growth rate computed by GEOMEAN on values 1.10, 0.95, and 1.20, then subtracting one. Arithmetic mean would overstate the gain.

Harmonic mean, accessed via HARMEAN, is appropriate when averaging rates such as miles per hour over fixed distances or price-to-earnings ratios across stocks. It is always less than or equal to the geometric mean, which in turn is less than or equal to the arithmetic mean for positive numbers. Choosing the wrong type of mean can mislead readers; if your data represents rates or ratios, pause to consider whether arithmetic averaging actually answers the business question being asked.

Median and mode round out the central tendency toolkit. =MEDIAN(B2:B100) returns the middle value when sorted, which resists outliers far better than the mean. =MODE.SNGL returns the most frequent value, while =MODE.MULT returns an array of all values that tie for most frequent. Use median for income, home prices, and any skewed distribution; use mode for categorical data and frequency counts. Reporting both mean and median together gives readers a fuller picture of the distribution.

Finally, consider conditional weighted averages by combining SUMPRODUCT with logical arrays. For example, =SUMPRODUCT((Region="West")*Sales*Weight)/SUMPRODUCT((Region="West")*Weight) computes the weighted average sales for the West region only. This pattern scales to any number of conditions and is the analytical workhorse behind many enterprise dashboards. Mastering it elevates you from a casual user to someone who can build trustworthy, audit-ready analytics on top of any Excel dataset.

Practice Excel Formula Questions Including AVERAGE

Now that you understand the full averaging toolkit, the next step is building reliable habits that keep your work accurate as workbooks grow. Start every analysis by converting your data into an Excel Table with Ctrl+T. Tables auto-expand, support structured references like Sales[Revenue], and prevent the most common source of stale numbers: formulas that point at fixed ranges while new data spills past their boundaries. This single step pays compound dividends across every formula you write afterward.

Name your ranges intentionally. Instead of writing =AVERAGE(B2:B500), define a named range called QuarterlyRevenue and write =AVERAGE(QuarterlyRevenue). Named ranges turn formulas into documentation, make audits faster for colleagues, and survive worksheet restructuring better than cell references. Use Formulas > Name Manager to review every name in a workbook periodically; orphaned names and broken references hide there and cause subtle bugs when files travel between users or get copied across environments.

Document your assumptions inline. Beside each major formula, add a comment with Shift+F2 explaining what the calculation represents, what units it uses, and what date range it covers. Future you will thank present you. For shared workbooks, add a dedicated Notes tab listing every key metric, the formula behind it, and the data source. Reviewers should be able to reconstruct your analysis without asking questions, and this transparency is what separates analyst-grade work from amateur reports.

Validate your averages against an independent calculation whenever the result feeds a decision. Compute the same metric in a pivot table, with a SUMIF over a COUNTIF, or by exporting to a quick Python or SQL query. If the numbers diverge, investigate before publishing. Many real-world reporting errors come not from formula mistakes but from misaligned definitions; one team excludes returns from sales averages while another includes them, producing different but technically correct numbers that confuse stakeholders.

Build defensive formatting around your outputs. Apply conditional formatting to highlight when an average drops below a threshold, or use data bars to show relative magnitude across rows. A naked number is easy to misread; a number with visual context is harder to misinterpret. Combine this with cell protection on formula cells so collaborators cannot accidentally overwrite logic with hardcoded values, a common source of regression in shared monthly reports that pass through many hands.

Practice deliberately. Take a sample dataset, perhaps a public CSV of weather, sales, or sports statistics, and challenge yourself to compute the mean using AVERAGE, then AVERAGEIF on a category, then AVERAGEIFS with two conditions, then a weighted average, and finally a moving average. Working the same data through five techniques cements the syntax and trains your judgment about which method fits which question. Repetition with variation is the fastest path to fluency in any Excel skill.

Finally, keep learning adjacent functions. Once AVERAGE feels natural, branch into MEDIAN, PERCENTILE, QUARTILE, STDEV, and VAR to describe distributions fully. Add FORECAST, TREND, and LINEST to predict future values. Layer in dynamic array functions like FILTER, SORT, and UNIQUE if you are on Excel 365 to reshape data before averaging. Each new function multiplies what you can do with the others, and the AVERAGE family stays at the center of analytical reporting throughout your career.

FREE Excel Questions and Answers
Full-length practice test simulating real Excel certification exam conditions and difficulty.
FREE Excel Trivia Questions and Answers
Fun trivia questions covering Excel history, shortcuts, hidden features, and obscure functions.

Excel Questions and Answers

What is the basic formula to find an average on Excel?

The basic formula is =AVERAGE(range), where range is the group of cells containing your numbers. For example, =AVERAGE(A1:A10) sums the values in cells A1 through A10 and divides by the count of numeric cells. Blank cells and text values are ignored automatically. You can also pass individual cells or multiple ranges separated by commas, such as =AVERAGE(A1:A5, C1:C5), making the function flexible for almost any data layout.

How is AVERAGE different from AVERAGEA?

AVERAGE includes only numeric cells in its calculation and ignores text and logical values inside referenced ranges. AVERAGEA includes everything: text counts as zero, FALSE counts as zero, and TRUE counts as one. Use AVERAGE when blanks and text should be excluded entirely. Use AVERAGEA when missing or text-labeled entries should drag the mean toward zero, such as in surveys where Pending responses indicate incomplete data that should lower the metric.

How do I average only cells that meet a condition?

Use AVERAGEIF for a single criterion or AVERAGEIFS for multiple criteria. For one condition, write =AVERAGEIF(B2:B100, "West", C2:C100) to average column C where column B equals West. For multiple conditions, AVERAGEIFS reverses the argument order: =AVERAGEIFS(C2:C100, B2:B100, "West", D2:D100, ">1000"). All criteria must be true for a row to be included. Wildcards and comparison operators work inside the criteria arguments when wrapped in double quotes.

Why does my AVERAGE formula return #DIV/0?

The #DIV/0! error appears when AVERAGE finds zero numeric cells in the specified range. This happens when the range is entirely empty, contains only text, or has been filtered such that no visible rows contain numbers. Wrap the formula in IFERROR like =IFERROR(AVERAGE(B2:B100), 0) to display a default value instead of the error. Investigate the underlying cause first; sometimes the error correctly signals that no data exists yet.

How do I find an average ignoring zeros in Excel?

Use AVERAGEIF with a not-equal-to-zero criterion: =AVERAGEIF(B2:B100, "<>0"). This formula averages every cell in B2:B100 except those containing exactly zero. Blanks are already ignored by AVERAGE family functions, so you only need to exclude zeros explicitly. This is especially useful when zeros represent missing measurements rather than true values, such as a sensor that records zero when offline rather than reporting an actual reading of zero.

Can I average across multiple worksheets?

Yes, use a 3D reference. The formula =AVERAGE(Jan:Dec!B5) averages cell B5 across every sheet between Jan and Dec inclusive, in the order they appear in the tab bar. This works perfectly for monthly reporting workbooks with identical layouts on each tab. Add two helper sheets named Start and End at the beginning and end of your range to lock the boundaries, so newly added sheets get automatically included only when placed between them.

How do I calculate a weighted average in Excel?

Use SUMPRODUCT combined with SUM. The formula =SUMPRODUCT(values, weights)/SUM(weights) multiplies each value by its weight, sums the products, then divides by the total weight to normalize the result. For example, =SUMPRODUCT(B2:B10, C2:C10)/SUM(C2:C10) computes the weighted average of scores in column B with weights in column C. This is essential for grade calculations, portfolio returns, and survey aggregation where data points represent different population sizes.

How do I average only visible cells after filtering?

Replace AVERAGE with SUBTOTAL or AGGREGATE. Write =SUBTOTAL(1, B2:B100) to average only the visible rows after filtering; the number 1 tells SUBTOTAL to use the AVERAGE function. AGGREGATE goes further: =AGGREGATE(1, 7, B2:B100) ignores both hidden rows and error values, providing cleaner results in dashboards. Plain AVERAGE always includes hidden values, which causes the formula to disagree with what users see on screen during filtering.

What is the keyboard shortcut to insert AVERAGE quickly?

Press Alt + M, U, A on Windows to open the AutoSum drop-down and select Average in three keystrokes. Alternatively, click the small arrow beside the AutoSum button on the Home or Formulas tab and choose Average. Excel automatically proposes a range from contiguous numbers above your selected cell. Press Enter to accept or drag to adjust. This is the fastest way to insert an AVERAGE formula without typing the function name manually.

How do I average data and handle outliers in Excel?

Use TRIMMEAN to exclude extreme values before averaging. The formula =TRIMMEAN(B2:B100, 0.1) trims the top and bottom 5 percent of values, then averages the rest, producing a robust central tendency less sensitive to data entry errors or genuine outliers. For symmetric trimming of specific counts, sort your data and use AVERAGE on the middle range. Always compare the trimmed result against MEDIAN to see how heavily outliers were affecting your standard arithmetic mean.
โ–ถ Start Quiz