123 useful answers · Page 1 of 6

Spreadsheets

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

Search this topic

How do I add up a column in Google Sheets?

Click an empty cell below your numbers and enter =SUM(B2:B20), replacing the range with yours. Keep the total cell outside the range so it does not include itself. For two separate blocks, use =SUM(B2:B10,D2:D10). Test with a few numbers you can add mentally, then confirm that the range includes the final data row and excludes any existing subtotals.

How do I find duplicate spreadsheet entries before deleting anything?

In Excel, select the cells to inspect, then choose Home, Conditional Formatting, Highlight Cells Rules and Duplicate Values. Review the highlighted cells in context: two customers can share a surname without being the same person. If removal is appropriate, copy the original table first. Under Data, Remove Duplicates, choose the columns that together define a duplicate record.

How can I remove extra spaces from spreadsheet text?

Select the text cells in Google Sheets and use Data, Data cleanup, Trim whitespace. Inspect a few cleaned values before continuing with matching or counting formulas. This removes leading, trailing and repeated spaces, but does not remove non-breaking spaces. If a copied web value still fails to match, compare it with a freshly typed version before applying more cleanup to the whole column.

How do I count rows with a particular status?

Use COUNTIF when one condition determines which cells count. In Google Sheets, =COUNTIF(C2:C50,"Done") counts matching status cells, while =COUNTIF(B2:B50,">100") counts numbers above 100. Put text and comparison operators inside quotation marks. Check that your range covers the intended records. If each row must satisfy two different conditions, switch to COUNTIFS rather than adding two separate counts.

How do I total amounts for one category in Excel?

Use SUMIF when a label decides which amounts belong in the total. If A2:A20 contains categories and B2:B20 contains amounts, =SUMIF(A2:A20,"Supplies",B2:B20) adds only Supplies rows. Put the category in D2 and use D2 instead of quoted text to make the summary reusable. Keep the category and amount ranges aligned, and check the total against a manually filtered sample.

How do I sum Excel rows that meet two conditions?

With regions in A, statuses in B and amounts in C, use =SUMIFS(C2:C50,A2:A50,"East",B2:B50,"Paid"). SUMIFS puts the amount range first, unlike SUMIF. A row contributes only when both conditions match. Use ranges with the same first and last rows. Check one East/Paid row and one excluded row before copying the formula into a report.

How do I total one month's transactions in Excel?

Store actual dates in A and amounts in B. To total January 2026, use =SUMIFS(B2:B100,A2:A100,">="&DATE(2026,1,1),A2:A100,"<"&DATE(2026,2,1)). The exclusive next-month boundary also handles timestamps on the final day. Confirm that dates are numeric Excel dates rather than imported text. Do not filter by a month name alone if the data spans several years.

How do I count records that meet two conditions in Excel?

Use =COUNTIFS(A2:A50,"East",B2:B50,"Open") to count rows whose region is East and status is Open. COUNTIFS applies every condition to the same row. Keep its ranges equal in size. It counts matching records, not distinct customers: if one customer has three qualifying records, the result includes three. Decide whether you need record counts or unique people before using the result.

How do I count only numeric cells in Excel?

Use =COUNT(A2:A50) to count cells containing numeric values. Text labels and empty cells are ignored, but dates and times count because Excel stores them as numbers. A number imported as text may not count until converted. Compare COUNT with the expected number of numeric records before averaging a column; a plausible-looking total can hide missing text-formatted numbers.

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