Basics of Excel


Basics of Excel Interview with follow-up questions

1. Can you explain the basic layout of an Excel spreadsheet?

An Excel spreadsheet is organized into a grid of rows (numbered 1, 2, 3…) and columns (labeled A, B, C…). The intersection of a row and a column is a cell, identified by its column letter and row number — for example, B3 refers to column B, row 3.

Key layout elements:

  • Cell: the basic unit for storing data (numbers, text, dates, formulas, or functions). Each cell has a unique address like A1 or D7.
  • Formula bar: displays the content or formula of the active cell.
  • Name Box: shows the address of the currently selected cell or named range.
  • Ribbon: the tabbed toolbar at the top (Home, Insert, Formulas, Data, Review, View, etc.) containing all commands.
  • Sheet tabs: at the bottom, letting you switch between worksheets within the workbook.
  • Status bar: at the very bottom, showing quick statistics (Sum, Average, Count) for any selected range.

A single Excel file is called a workbook and can contain multiple worksheets. In Excel 365, a worksheet supports up to 1,048,576 rows and 16,384 columns (column XFD). Cells can also spill results across multiple cells when a formula returns an array — a behavior native to Excel 365 dynamic arrays.

↑ Back to top

Follow-up 1

What is the purpose of rows and columns in Excel?

Rows and columns in Excel serve the purpose of organizing and structuring data. Rows are horizontal and are identified by numbers, while columns are vertical and are identified by letters. Rows are used to group related data together, while columns are used to categorize data into different attributes or variables. The combination of rows and columns creates a grid-like structure that allows for efficient data entry, analysis, and manipulation.

Follow-up 2

What is a cell in Excel?

A cell in Excel is the intersection of a row and a column. It is the basic unit of a spreadsheet and can contain various types of data such as numbers, text, dates, formulas, or functions. Each cell is identified by a unique address, which consists of the column letter followed by the row number. For example, cell A1 refers to the cell in the first column and first row.

Follow-up 3

What is the significance of cell addresses in Excel?

Cell addresses in Excel are significant as they provide a way to reference and manipulate specific cells within a spreadsheet. Cell addresses are used in formulas and functions to perform calculations or operations on the data contained in those cells. By referencing cell addresses, you can create dynamic formulas that automatically update when the referenced cells change. Cell addresses also allow you to navigate through an Excel spreadsheet and select specific cells for data entry or formatting.

Follow-up 4

How can you navigate through an Excel spreadsheet?

You can navigate through an Excel spreadsheet using various methods. Here are a few common ways:

  1. Arrow keys: Use the arrow keys on your keyboard to move the active cell up, down, left, or right.

  2. Mouse: Click on a cell to select it. You can also click and drag to select a range of cells.

  3. Go To: Press Ctrl + G to open the Go To dialog box. Enter a cell address or a range of cells to navigate to.

  4. Scroll bars: Use the horizontal and vertical scroll bars to move the visible area of the spreadsheet.

  5. Sheet tabs: Click on the sheet tabs at the bottom of the Excel window to switch between different sheets in a workbook.

These are just a few examples, and there are many more ways to navigate through an Excel spreadsheet depending on your specific needs and preferences.

2. What are some common terminologies used in Excel?

Understanding Excel's core vocabulary is essential for any interview. Key terms include:

  • Cell: the intersection of a row and column, identified by an address like B4. The basic unit for storing data.
  • Range: a group of one or more cells, written as A1:C5. Ranges are used as arguments in almost every function.
  • Formula: an expression you enter into a cell that begins with = and computes a result (e.g., =A1+B1).
  • Function: a built-in, named operation that takes arguments and returns a value — for example, SUM, IF, XLOOKUP, or FILTER.
  • Workbook: the Excel file itself (.xlsx). Contains one or more worksheets.
  • Worksheet (Sheet): a single tab within a workbook, made up of rows and columns.
  • Ribbon: the tabbed command bar at the top of the Excel window.
  • Formula bar: displays the raw content (including formulas) of the active cell.
  • Name Box: shows the address or name of the selected cell or range.
  • Absolute reference: a cell reference locked with $ signs (e.g., $A$1) so it does not shift when a formula is copied.
  • Relative reference: a cell reference (e.g., A1) that adjusts automatically when a formula is copied.
  • Named range: a descriptive label assigned to a cell or range (e.g., SalesTax) for use in formulas instead of an address.
  • PivotTable: an interactive table that summarizes and aggregates data dynamically.
  • Dynamic array: an Excel 365 feature where a single formula can return multiple values that spill into neighboring cells automatically.
  • Spill range: the block of cells populated by a dynamic array formula, referenced with the # operator (e.g., A1#).
↑ Back to top

Follow-up 1

What is a formula in Excel?

A formula in Excel is an expression that performs calculations or manipulates data. It starts with an equal sign (=) and can include mathematical operators, cell references, and functions. For example, the formula =A1+B1 adds the values in cells A1 and B1.

Follow-up 2

What is a function in Excel?

A function in Excel is a predefined formula that performs a specific calculation. Functions are built-in to Excel and can be used to perform tasks such as summing numbers, finding averages, and counting cells. For example, the SUM function adds up a range of cells: =SUM(A1:A10).

Follow-up 3

What is a range in Excel?

A range in Excel refers to a group of cells. It can be a single cell, a row, a column, or a rectangular group of cells. Ranges are often used in formulas and functions to perform calculations on multiple cells at once. For example, the range A1:A10 represents all the cells in column A from row 1 to row 10.

Follow-up 4

What is a workbook and a worksheet in Excel?

In Excel, a workbook is a file that contains one or more worksheets. It is the main document in which you store and work with data. A worksheet, also known as a spreadsheet, is a single sheet within a workbook. It consists of a grid of cells where you can enter and manipulate data. Workbooks can contain multiple worksheets, each with its own name and data.

3. How would you perform basic operations like addition, subtraction, multiplication, and division in Excel?

In Excel, basic arithmetic is performed using standard operators directly in a formula. Every formula must begin with =.

Operation Operator Example formula
Addition + =A1+B1
Subtraction - =A1-B1
Multiplication * =A1*B1
Division / =A1/B1
Exponentiation ^ =A1^2

Excel follows standard order of operations (PEMDAS/BODMAS), so =2+3*4 returns 14, not 20. Use parentheses to override the order: =(2+3)*4 returns 20.

For ranges, use built-in functions:

  • =SUM(A1:A10) — adds all values in a range
  • =PRODUCT(A1:A10) — multiplies all values in a range
  • =MOD(A1,B1) — remainder after division

A common interview follow-up is division-by-zero handling: =A1/B1 returns #DIV/0! when B1 is 0. The modern way to handle this is =IFERROR(A1/B1, 0) or =IF(B1=0, "N/A", A1/B1).

↑ Back to top

Follow-up 1

How would you perform these operations on a range of cells?

To perform these operations on a range of cells in Excel, you can use the same formulas mentioned earlier, but instead of referencing individual cells, you can reference the range of cells using the colon (:) operator. For example, to add the values in the range A1:A5, you can use the formula =SUM(A1:A5). This will sum up all the values in the range A1 to A5.

Similarly, you can use the same formulas for subtraction, multiplication, and division by referencing the appropriate range of cells.

Follow-up 2

What is the order of operations in Excel?

The order of operations in Excel follows the same rules as in mathematics. The order of operations is as follows:

  1. Parentheses: Operations inside parentheses are performed first.
  2. Exponents: Exponentiation is performed next.
  3. Multiplication and Division: Multiplication and division are performed from left to right.
  4. Addition and Subtraction: Addition and subtraction are performed from left to right.

It's important to note that you can use parentheses to change the order of operations and prioritize certain calculations over others.

Follow-up 3

How can you use parentheses to change the order of operations in Excel?

To change the order of operations in Excel, you can use parentheses to group certain calculations together. The operations inside the parentheses will be performed first.

For example, if you have the formula =(A1+B1)*C1, Excel will first add the values in cells A1 and B1, and then multiply the result by the value in cell C1.

You can also nest parentheses to further control the order of operations. For example, the formula =(A1+(B1*C1))/D1 will first multiply the values in cells B1 and C1, then add the result to the value in cell A1, and finally divide the overall result by the value in cell D1.

4. How would you save and open an Excel file?

Saving a file:

  • Ctrl + S (Windows) / Cmd + S (Mac) — saves the current workbook.
  • First save prompts you to choose a location and file format. The default format is .xlsx (Excel Workbook). Other common formats include .xlsm (macro-enabled) and .csv (plain text, single sheet only).
  • File > Save As (or F12) — saves a copy to a different name, location, or format.
  • In Excel 365 with OneDrive or SharePoint, AutoSave is enabled by default, saving changes continuously to the cloud. The toggle appears in the top-left corner of the ribbon.

Opening a file:

  • Ctrl + O (Windows) / Cmd + O (Mac) — opens the file picker dialog.
  • File > Open shows recent files, pinned files, and your OneDrive/SharePoint locations.
  • Double-clicking an .xlsx file in File Explorer / Finder also opens it directly in Excel.
  • Dragging a file onto an open Excel window opens it as well.

Interview tip: Interviewers sometimes ask about the difference between .xlsx and .xlsm — the key point is that .xlsm is required to save workbooks containing VBA macros, since .xlsx strips macros on save.

↑ Back to top

Follow-up 1

What are the different file formats available in Excel?

Excel supports various file formats for saving and opening files. The most common file format is .xlsx, which is the default format for Excel files created in Excel 2007 and later versions. Other file formats include .xls (Excel 97-2003 format), .xlsm (Excel macro-enabled workbook), .xlsb (Excel binary workbook), .csv (comma-separated values), and more.

Follow-up 2

What is the difference between 'Save' and 'Save As' in Excel?

The 'Save' option in Excel is used to save changes to an existing file. It overwrites the existing file with the updated content. On the other hand, the 'Save As' option allows you to save the current file with a different name or in a different location. It creates a new copy of the file while preserving the original file. 'Save As' is useful when you want to create a duplicate of the file or save it in a different format.

Follow-up 3

How can you recover unsaved Excel files?

If Excel crashes or you accidentally close a file without saving, you can try to recover unsaved Excel files using the AutoRecover feature. When you reopen Excel, it will automatically search for any unsaved files and prompt you to recover them. You can also manually access the AutoRecover feature by going to the 'File' menu, selecting 'Open', and then clicking on the 'Recover Unsaved Workbooks' option. Additionally, Excel may create temporary backup files that can be found in the 'Document Recovery' pane.

5. How would you enter and format data in Excel?

Entering data:

  • Click a cell and start typing — press Enter to confirm and move down, or Tab to confirm and move right.
  • Flash Fill (Ctrl + E) detects a pattern from your examples and fills the rest of the column automatically. For example, if column A has full names and you type the first name in B1, Flash Fill can populate B2:B100 with just first names.
  • To enter the same value in multiple cells at once, select the range, type the value, and press Ctrl + Enter.
  • Paste Special (Ctrl + Alt + V) lets you paste only values, formats, or formulas separately.

Formatting data:

  • Home tab > Number group: choose a number format from the dropdown — General, Number, Currency, Accounting, Percentage, Date, Time, etc. Custom formats use codes like #,##0.00 or dd/mm/yyyy.
  • Home tab > Font / Alignment groups: change font, size, bold/italic/underline, text color, fill color, borders, and cell alignment.
  • Format Cells dialog (Ctrl + 1): gives full control over number formats, alignment, font, border, and fill in one place.
  • Format as Table (Ctrl + T): converts a range into a structured Table with automatic filtering, banded rows, and easy reference in formulas (e.g., Table1[Sales]).
  • Conditional Formatting: automatically formats cells based on their values — highlights, color scales, data bars, and icon sets.

In Excel 365, cells within a structured Table expand automatically when new rows are added, and formulas referencing the Table update without any manual adjustment.

↑ Back to top

Follow-up 1

How can you adjust the size of rows and columns in Excel?

To adjust the size of rows and columns in Excel, you can use the following methods:

  1. AutoFit: Double-click on the boundary between two column or row headers to automatically adjust the size to fit the content.

  2. Manual adjustment: Click on the boundary between two column or row headers and drag it to the desired size.

  3. Using the 'Format' options: Select the column or row you want to adjust, go to the 'Home' tab, click on the 'Format' button in the 'Cells' group, and choose 'Row Height' or 'Column Width' to specify the size.

Follow-up 2

How can you apply different number formats in Excel?

To apply different number formats in Excel, you can use the following steps:

  1. Select the cell or range of cells you want to format.

  2. Go to the 'Home' tab and click on the 'Number Format' dropdown in the 'Number' group.

  3. Choose the desired number format from the list, such as 'General', 'Number', 'Currency', 'Percentage', 'Date', 'Time', or 'Custom'.

  4. If needed, you can further customize the number format by clicking on the 'More Number Formats' option at the bottom of the dropdown.

For example, to format a cell as currency with two decimal places, you can select the cell, choose 'Currency' from the 'Number Format' dropdown, and set the decimal places to 2.

Follow-up 3

How can you use the 'Format Painter' tool in Excel?

The 'Format Painter' tool in Excel allows you to quickly copy the formatting from one cell or range of cells to another.

To use the 'Format Painter' tool, follow these steps:

  1. Select the cell or range of cells that have the formatting you want to copy.

  2. Go to the 'Home' tab and click on the 'Format Painter' button in the 'Clipboard' group. The cursor will change to a paintbrush icon.

  3. Click on the cell or range of cells where you want to apply the formatting. The formatting will be copied to the selected cells.

You can also double-click on the 'Format Painter' button to apply the formatting to multiple cells or ranges without having to click again to turn off the 'Format Painter' mode.

Follow-up 4

How can you apply conditional formatting in Excel?

Conditional formatting in Excel allows you to apply formatting to cells based on specific conditions or rules.

To apply conditional formatting, follow these steps:

  1. Select the cell or range of cells you want to apply conditional formatting to.

  2. Go to the 'Home' tab and click on the 'Conditional Formatting' button in the 'Styles' group.

  3. Choose the desired type of conditional formatting, such as 'Highlight Cells Rules', 'Top/Bottom Rules', or 'Data Bars'.

  4. Select the specific rule or condition you want to apply, such as 'Greater Than', 'Less Than', 'Between', 'Duplicate Values', or 'Text that Contains'.

  5. Set the criteria or values for the selected rule.

  6. Choose the formatting options, such as font color, cell color, or data bars.

  7. Click 'OK' to apply the conditional formatting to the selected cells.

Live mock interview

Mock interview: Basics of Excel

Intermediate ~5 min Your own free AI key

Your voice and your AI key never touch our servers; the key stays in this browser and is sent only to Google. Only your round scores are saved to track progress.