Microsoft Excel Foundations — 15 Questions — Practice & Learn
15
Questions
Ungraded
Self-Check
∞
Self-Paced
Practice Mode
This self-assessment is NOT graded and does NOT count toward your course grade. Use it to test your understanding of Week 4 concepts. Review the feedback for each answer to deepen your knowledge before taking the graded assessment.
Excel Interface & Formatting
1
Formula BarUngraded
A pharmacy technician clicks on a cell containing a complex dosage calculation and notices the cell only shows the final number. She needs to see the full formula to verify it references the correct drug concentration cells. Which area of the Excel interface allows her to view the complete formula stored in the selected cell?
AThe Quick Access Toolbar
BThe Name Box
CThe Formula BarCorrect
DThe Status Bar
Explanation
The Formula Bar is the long white bar above the worksheet grid that displays the contents of the currently selected cell. While cells show calculated results, the Formula Bar reveals the underlying formula. This is essential in healthcare settings where dosage calculations must be verified for accuracy — a pharmacist can click any cell and immediately confirm that the formula references the correct concentration, volume, and conversion-factor cells before dispensing medication.
2
Number FormattingUngraded
A health information technician is building a hospital readmission report. She enters 0.08 in a cell to represent the 8% readmission rate for the cardiology unit. Which number format should she apply so the cell displays "8%" instead of "0.08"?
AScientific format
BPercentage formatCorrect
CNumber format with two decimal places
DFraction format
Explanation
The Percentage format multiplies the cell value by 100 and appends a percent sign. So 0.08 becomes "8%." This format does not change the underlying value — Excel still stores 0.08, which means formulas that reference the cell continue to calculate correctly. In healthcare reporting, readmission rates, infection rates, and compliance percentages are always presented in this format so administrators can read dashboards at a glance without converting decimals mentally.
3
Conditional FormattingUngraded
A clinical lab manager maintains a spreadsheet of daily hemoglobin test results. She wants any value below 12.0 g/dL to automatically appear with a yellow background so technicians can quickly identify patients who may be anemic. Which Excel feature accomplishes this?
AAutoFilter with a color criterion
BFind and Replace with formatting options
CCell Protection with visual indicators
DConditional FormattingCorrect
Explanation
Conditional Formatting applies visual formatting (background color, font color, icons) automatically based on rules you define — such as "highlight cells where the value is less than 12.0." Unlike filtering, the data remains visible; the formatting simply draws attention to values that need review. In clinical labs, this feature acts as a visual safety net, instantly flagging abnormal results so technicians never accidentally overlook a critically low hemoglobin level.
Formulas, Functions & References
4
Absolute vs Relative ReferencesUngraded
A dental office receptionist tracks patient co-pays in a spreadsheet. Column B lists each procedure's total charge, and cell E1 contains the fixed co-pay percentage (0.20). The formula in C2 is =B2*E1. When she copies it down to C3, it becomes =B3*E2, returning zero because E2 is empty. How should the receptionist fix the original formula so it copies correctly for all rows?
AReplace B2 with $B$2 so every row uses the same charge
BUse the INDIRECT function to lock the reference to E1
CChange E1 to $E$1 to create an absolute reference that stays fixed when copiedCorrect
DType the number 0.20 directly into the formula instead of referencing a cell
Explanation
The dollar signs in $E$1 create an absolute reference, which tells Excel "never shift this cell address when the formula is copied." Without them, Excel adjusts the reference relative to the new row (E1 becomes E2, E3, etc.). The corrected formula =B2*$E$1 lets B2 shift naturally (B3, B4...) while always multiplying by the single co-pay percentage in E1. This is one of the most important Excel skills in healthcare administration — billing sheets, supply cost trackers, and staffing calculators all rely on mixing relative and absolute references.
5
Choosing the Right FunctionUngraded
A physical therapy coordinator maintains a spreadsheet listing 80 patients scheduled for weekly sessions. Column D records the number of minutes each patient exercised; cells for patients who have not yet attended are left blank. The coordinator needs to know how many patients have completed at least one session. Which function returns the correct count?
B=AVERAGE(D:D) — calculates the mean session length
C=COUNTA(D:D) — counts all cells that are not empty
D=SUM(D:D) — totals all the exercise minutes
Explanation
COUNT tallies only cells that contain numeric values, skipping blanks and text. Since the column records exercise minutes (numbers) and blanks represent patients who have not attended, COUNT gives an accurate headcount of patients who have completed sessions. COUNTA would also count any text or error values, SUM totals the minutes rather than counting patients, and AVERAGE computes a mean. Understanding when to use COUNT vs. COUNTA vs. SUM is critical for accurate healthcare reporting.
6
IF Function SyntaxUngraded
A clinical dietitian tracks patient BMI values in column D. She wants a formula that displays "Obese" if the BMI in D5 is 30 or greater, and "Not Obese" otherwise. Which formula is correct?
A=IF(D5>30,"Obese","Not Obese")
B=IF(D5<30,"Obese","Not Obese")
C=IF(D5=30,"Obese","Not Obese")
D=IF(D5>=30,"Obese","Not Obese")Correct
Explanation
The >= operator means "greater than or equal to," which matches the clinical definition: a BMI of exactly 30 is classified as obese. Option A (>30) would miss a BMI of exactly 30, Option B (<30) reverses the logic entirely, and Option C (=30) only catches the exact value of 30. In healthcare, precise logical operators in formulas matter — using > instead of >= could cause a patient at the clinical threshold to be misclassified, potentially affecting their care plan or insurance coding.
Sorting, Filtering & Data Management
7
Sorting and FilteringUngraded
A hospital infection control specialist has a spreadsheet with 1,200 incident reports spanning all departments and the full calendar year. She needs to isolate only the surgical-site infections in the Orthopedics unit that occurred during Q3 (July–September). What is the MOST efficient approach?
ASort the spreadsheet by date, then visually scan for Orthopedics entries
BDelete all rows that do not match the criteria and save the file with a new name
CUse AutoFilter to filter Infection Type for "Surgical-Site," Department for "Orthopedics," and Date for July through SeptemberCorrect
DUse COUNTIF to count matching rows and then print the entire spreadsheet
Explanation
AutoFilter lets you apply multiple criteria simultaneously across different columns without altering the underlying data. You can filter by infection type, department, and date range all at once, instantly narrowing 1,200 rows to just the relevant records. Sorting alone still requires manual scanning, deleting rows destroys data, and COUNTIF only gives a number without showing the actual records. In infection control, being able to quickly isolate and analyze specific incident subsets is essential for outbreak investigation and regulatory reporting.
8
Embedding vs LinkingUngraded
A hospital quality assurance director embeds an Excel staffing-hours table into a PowerPoint slide deck for a board presentation. The next day, the HR department corrects several overtime figures in the original Excel workbook. What will the director see in the PowerPoint slide deck?
APowerPoint will prompt the director to accept or reject each change individually
BThe slide deck will show a broken-link icon where the table used to be
CThe staffing table in PowerPoint will update automatically the next time the file is opened
DThe staffing table in PowerPoint will still show the original numbers because an embedded object is an independent copyCorrect
Explanation
When you embed an object, you place an independent copy inside the destination file. Changes to the original source file have no effect on the embedded copy. This is the key difference between embedding and linking: a linked object maintains a live connection to the source and updates automatically, while an embedded object is a frozen snapshot. In healthcare administration, understanding this distinction prevents presenting outdated data in board meetings — if you need live data, use Paste Link instead of embedding.
9
Data ValidationUngraded
A pediatric nurse is building a vaccination log in Excel. The "Patient Age (months)" column should only accept whole numbers between 0 and 216 to prevent impossible entries from being recorded. Which Excel feature should the nurse apply to enforce this rule at the point of data entry?
AConditional Formatting to highlight errors
BCell Protection to prevent any editing
CData Validation set to allow Whole Number between 0 and 216Correct
DA VLOOKUP formula that cross-references an approved age list
Explanation
Data Validation restricts what can be entered into a cell before it is accepted. You can set it to allow only whole numbers within a minimum and maximum range (0 to 216 months, which is 18 years). If someone types a negative number, a decimal, or a value over 216, Excel rejects the entry with an error message. Conditional Formatting only highlights after the fact, Cell Protection blocks all edits (not just invalid ones), and VLOOKUP retrieves data rather than restricting input. In healthcare, Data Validation is a frontline defense against data entry errors that could affect patient safety.
Data Integration & Productivity
10
Mail MergeUngraded
A home health agency needs to mail personalized care plan summaries to the families of 200 patients. Each letter must include the patient's name, assigned nurse, visit schedule, and emergency contact number, all of which are stored in an Excel workbook. What is the most efficient way to produce these individualized letters?
AUse an IF function in Excel to concatenate the letter text for each row and print column by column
BSave the workbook as a PDF and manually highlight each patient's information before printing
CUse Word's Mail Merge feature with the Excel spreadsheet as the data sourceCorrect
DCreate 200 separate Word documents and type each patient's details individually
Explanation
Mail Merge connects a Word letter template to an Excel data source. You design the letter once with placeholder fields (patient name, nurse, schedule), and Word automatically generates a personalized copy for every row in the spreadsheet. This turns a task that would take days of manual typing into a few minutes of setup. In healthcare, Mail Merge is used for appointment reminders, billing statements, care plan letters, and compliance notifications — any time you need to send the same document personalized for many recipients.
11
Auto-Fill FeatureUngraded
A medical office assistant needs to enter the days of the week (Monday through Friday) across cells B1 to F1 for a weekly appointment schedule. What is the fastest way to do this in Excel?
AType each day manually in each cell
BType "Monday" in B1, then drag the fill handle to the right to F1Correct
CUse the SUM function to generate the days
DCopy "Monday" and paste it into each cell, then edit each one
Explanation
Excel's Auto-Fill (the small square at the bottom-right corner of a selected cell, called the fill handle) recognizes common series like days of the week and months of the year. When you type "Monday" and drag the fill handle, Excel automatically fills in Tuesday, Wednesday, Thursday, and Friday. This also works with numbered sequences, dates, and custom lists. Learning to use Auto-Fill saves significant time when building schedules, logs, and tracking sheets — tasks healthcare staff perform daily.
12
Freeze PanesUngraded
A healthcare data analyst has a spreadsheet with 500 patient records. The column headers (Patient ID, Name, Date, Vitals, etc.) in row 1 scroll off-screen when viewing data in lower rows. What Excel feature keeps the headers visible while scrolling?
ASplit Window
BFreeze Top RowCorrect
CPrint Titles
DPage Break Preview
Explanation
Freeze Top Row (found under View > Freeze Panes) locks row 1 in place so it stays visible no matter how far down you scroll. This prevents the common frustration of scrolling to row 300 and forgetting which column is which. Split Window divides the screen into panes but does not lock headers, Print Titles only affects printed pages, and Page Break Preview is for print layout. When working with large patient datasets, frozen headers reduce errors because you always know exactly which column you are reading.
13
CSV File LimitationsUngraded
A lab technician exports patient test results from Excel to CSV format for upload to the clinic's database system. Which limitation of CSV files should the technician be aware of?
ACSV files cannot store more than 100 rows of data
BCSV files cannot preserve formatting, formulas, charts, or multiple sheetsCorrect
CCSV files can only be opened on Windows computers
DCSV files automatically encrypt all patient data for HIPAA compliance
Explanation
CSV (Comma-Separated Values) is a plain-text format that stores only raw data values separated by commas. It strips away all Excel-specific features: cell formatting, colors, formulas, charts, and multiple worksheet tabs. CSV files have no row limit, work on any operating system, and provide zero encryption. In healthcare IT, CSV is the standard interchange format between systems (lab equipment, EHRs, billing), but technicians must understand that once they export to CSV, any formatting or formula logic from the original workbook is permanently lost.
14
Order of OperationsUngraded
A healthcare billing specialist enters the formula =10+5*2 into an Excel cell. What value does Excel display?
A30
B20Correct
C25
D15
Explanation
Excel follows the standard mathematical order of operations (PEMDAS): Parentheses, Exponents, Multiplication/Division (left to right), then Addition/Subtraction (left to right). In =10+5*2, multiplication happens first: 5*2 = 10. Then addition: 10+10 = 20. If you wanted left-to-right calculation, you would use parentheses: =(10+5)*2 = 30. Understanding order of operations is critical in healthcare billing — an incorrect formula could miscalculate co-pays, insurance adjustments, or medication dosages with real financial or clinical consequences.
15
Linking Live DataUngraded
TRUE or FALSE: When you link an Excel chart to a Word document using Paste Special > Paste Link, the chart in Word automatically updates whenever the original Excel data changes.
TTRUECorrect
FFALSE
Explanation
When you use Paste Special > Paste Link, Word creates a live connection to the original Excel file. Any time the Excel data changes and the Word document is opened (or refreshed), the linked chart updates automatically to reflect the new data. This is the opposite of embedding, which creates a static copy. In healthcare quality reporting, linking is valuable because dashboards and board presentations can always reflect the latest patient outcome data without manual re-copying — reducing both effort and the risk of presenting outdated numbers.
How Did You Do?
This was an ungraded self-assessment. Use your results to prepare for the graded Week 4 Assessment: