Excel Flashcards
How can you search for a specific text in the whole workbook in Excel?
Use the “Ctrl + F” keyboard shortcut to open the Find and Replace dialog box, then select “Workbook” in the “Within” dropdown menu.
Which of the following options correctly describes how to replace all occurrences of a specific text in Excel?
Click on the “Find and Select” button in the Home tab of the ribbon, select Replace, enter the text to be replaced and the replacement text, then click on “Replace All”.
What is the correct way to quickly remove all comments from an Excel workbook?
Use the “Inspect Workbook” feature and click the “Remove All” button by comments’
What happens to the data in merged cells in Excel?
The data from the upper-left cell is retained, and the data from the other cells is deleted.
What is the purpose of the Format Painter tool in Excel?
To transfer the formatting from one cell to another cell or range of cells
Which is a mix reference where with cell A2, the row is fixed but the column will adjust when the cell is copied or filled to other cells
A$2
What’s the syntax to populate a new cell with the text from B2 followed by “ is the “ and the text from cell D2?
=CONCAT(B2,” is in the “,D2,” Department”)
How Many Excel Data Formats Are Available? Name Them.
Six. They include:
Excel workbook: .xlsx
Excel macro-enabled workbook: .xlsm
Excel binary workbook: .xlsb
Template: .xltx
Template (code): .xltm
XML data: .xml
What Does the Red Triangle in the Cell’s Upper Right Corner Indicate?
A red triangle in the upper right corner of a cell indicates that a cell comment has been attached to this cell. If you hover over the cell with your cursor, the comment will be displayed.
Explain the Order of Operations Used in Excel.
Excel’s order of operations roughly follows the acronym PEMDAS (parentheses, exponents, multiplication, division, addition, subtraction).
() | Parentheses
: , | Reference operators
– | Negation
% | Percent
^ | Exponentiation
* / | Multiplication and Division
+ – | Addition and Subtraction
& | Concatenation
><= | Logical comparisons
Is It Possible To Use Multiple Data Sources To Render PivotTables?
Yes, data can be imported from a variety of sources by accessing the Data tab and clicking Get External Data > From Other Sources. Excel worksheet data, data feeds, text files, and other such data formats can be imported, but you’ll need to create relationships between the imported tables and those in your worksheet before using them to create a pivot table.
What Is VLOOKUP? What’s the main benefit of using XLOOKUP instead?
VLOOKUP is a predetermined function in Excel that allows the user to find data within a table corresponding to a particular row.
The VLOOKUP function can only move in one direction, from left to right. Therefore, the information you wish to seek out must be located in a column to the right of the lookup value’s location. With XLOOKUP, the data can be on either side.
Is VLOOKUP Look Up Case-Sensitive ?
no
What Is a PivotTable?
PivotTable brings together information from different locations in a workbook and displays it in a separate table. It can be used to highlight or easily compare data from different angles without the need to manually create extra tables.
Assuming you have a table with product names in column A and their corresponding prices in column B, write and XLOOKUP statement to find the price for product “Apple”
=XLOOKUP(“Apple”, A1:B10, 2, FALSE)