123 useful answers · Page 2 of 6

Spreadsheets: page 2

Work through formulas, formatting, sorting, and everyday data tasks.

Search this topic

How do I average amounts for one category in Excel?

With categories in A and amounts in B, =AVERAGEIF(A2:A50,"Delivery",B2:B50) averages amounts on Delivery rows. The label range and amount range must describe the same records. Text-formatted amounts can be excluded unexpectedly. Check the qualifying count and sum alongside the average so you can tell whether missing or nonnumeric records are affecting the result.

How do I find the lowest number in an Excel list?

Enter =MIN(B2:B50) in a summary cell outside that range. MIN examines numeric values and ignores text or blanks in referenced cells. Zero is a number, so it can be the minimum. If all entries are missing or nonnumeric, a zero result is not evidence of a real observed minimum. Check =COUNT(B2:B50) before interpreting an empty dataset.

How do I find the highest number in an Excel list?

Use =MAX(B2:B50) to return the largest numeric value in the selected data rows. Keep the summary cell outside the range and exclude any existing totals that are not individual observations. Negative values work normally: the maximum of -8 and -3 is -3. Check imported values for text formatting if an obviously larger number appears to be ignored.

How do I reverse a TRUE or FALSE result in Excel?

Use =NOT(B2) when B2 contains a logical TRUE or FALSE value. It can also reverse a comparison, such as =NOT(A2="Closed"). That example returns TRUE for blanks as well as other statuses, so add an explicit nonblank check if incomplete rows should be excluded. Do not assume a displayed word is a logical value if it was imported as text.

How do I look up a price by item code with XLOOKUP?

In Excel supporting XLOOKUP, use =XLOOKUP(E2,A2:A50,C2:C50,"Not found"). E2 is the requested code, A holds codes, and C holds prices. XLOOKUP uses an exact match by default. Make sure lookup codes are unique or decide which duplicate should win. Keep codes consistently formatted, especially when they contain leading zeros, and test a missing code as well as a known one.

How do I stop VLOOKUP from returning an approximate match?

Put FALSE in the fourth argument: =VLOOKUP(E2,A2:C50,3,FALSE). The lookup value must appear in the first column of that table, and 3 selects its third column. Leaving off the final argument enables approximate matching, which is unsuitable for many item-code searches. Verify one existing identifier and one nonexistent identifier; the missing exact match should produce #N/A.

Why can inserting a column change a VLOOKUP result?

VLOOKUP uses a numeric position within its selected table. In =VLOOKUP(E2,A2:C50,3,FALSE), the 3 means the third table column. Inserting or rearranging columns can make that number point at different information. Recheck the selected table and return-column position after layout changes. XLOOKUP or INDEX with MATCH can make the intended return range more explicit in a maintained workbook.

How do I create a live list of matching Excel rows?

In dynamic-array Excel, use =FILTER(A2:C50,B2:B50="Open","No open records"). The result expands into nearby cells and changes when the source values change. Put the formula outside the source table with enough empty space below and to its right. This produces a separate result; it does not hide or delete source rows. Check that the condition range matches the table's height.

Source checks for these answers: September 21, 2026. Product instructions and local requirements can vary.