123 useful answers · Page 4 of 6

Spreadsheets: page 4

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

Search this topic

How do I multiply several Excel cells together?

Use =PRODUCT(B2:D2) to multiply numeric values across a range. For 2, 3 and 4, the result is 24. Numeric zero makes the product zero, while blanks and text in referenced cells are ignored. That can hide missing inputs, so check required fields before using PRODUCT for measurements or totals where every factor must be supplied.

How do I get the month number from an Excel date?

Use =MONTH(A2) for a genuine Excel date; September returns 9. The output is numeric and can be useful for filtering or grouping. It does not include the year, so pairing it with YEAR(A2) is important for data covering several years. Do not feed MONTH a standalone month name and assume Excel will interpret it as a complete date.

How do I extract the year from an Excel date?

Use =YEAR(A2) to return the calendar year as a number. If A2 holds September 21, 2026, the result is 2026. This differs from formatting the original date to display only its year, which leaves the underlying full date intact. Check that imported dates are stored as date values rather than text before copying the formula down.

How do I make an Excel cell always show today's date?

Enter =TODAY() and apply a date format. It updates when the workbook recalculates, so it is useful for current-date comparisons but unsuitable as a permanent record of when a task was entered. To preserve an event date, enter a fixed date instead. A workbook using manual calculation may not refresh the displayed date until recalculation occurs.

How do I show the current date and time in Excel?

Enter =NOW() and apply a format that displays both date and time. NOW reflects the time when Excel recalculates; it is not a continuously ticking clock. It also changes on later recalculations, so it cannot serve as an immutable timestamp. For a record of when a form was submitted, use a stored timestamp from the submission process.

How do I extract minutes from an Excel time?

Use =MINUTE(A2) to return the minute component, from 0 to 59. For 2:35 PM, it returns 35, not 875 total minutes after midnight. If you need an elapsed duration in minutes, multiply the underlying day value by 1,440 instead. Decide whether you want one clock component or a total duration before choosing the formula.

How do I turn a text-formatted number into a numeric Excel value?

Use =VALUE(A2) in a helper column for text that follows a number format Excel recognizes. Review the result before replacing the source. Currency marks, separators and regional conventions can affect interpretation, while identifiers with leading zeros may need to remain text. Test an ordinary number, a negative value and a decimal from your import rather than assuming one successful row proves the entire column.

How do I turn an Excel row into a column with a formula?

In dynamic-array Excel, enter =TRANSPOSE(B2:F2) in an empty area. The five horizontal values appear vertically and stay linked to the source. Leave enough empty destination cells. Older Excel versions may require selecting the destination range and entering an array formula. Use Paste Special Transpose instead if you want a one-time independent copy rather than a live formula result.

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