Work in Normal view (otherwise, you might see different ruler measurements when doing things like changing row height)
Name Manager defined names is important for chapter 2 guided project
Defined names are inherently absolute references
The Quick Analysis button comes up after selecting a set of data like the Quick Toolbox in Word
“Make a table” instruction - highlight across row with formulas and then autofill down
Line with markers chart
Center Across Selection
Selecting multiple columns using Ctrl
Add chart element button doesn’t appear on Mac, need to go to Chart Design, Add Chart Element
Sort & Filter - Advanced might not work on a Mac
Ctrl + F6 to switch sheets
Static vs Dynamic
Consolidation by category - for when arrangement is not the same, column or row labels are used to match
Take a minute to understand what you are looking at
Group sheets (Ctrl click) to perform the same operation on them
You may need to sign out of a personal account and sign in with your FGCU account to use linked data types
F4 to toggle between relative, absolute, and mixed references.
1. Using the Name Box Drop-Down Arrow
Review: The Name Box is located to the left of the formula bar. You can use the Name Manager to see set names.
F3 to paste a name.
When you're editing a formula with nested functions, clicking the drop-down arrow in the Name Box can show you named ranges or function components (depending on context).
In some versions of Excel, especially when using the Function Arguments dialog, this drop-down helps you jump to specific parts of a complex formula.
2. Clicking the Top-Level Function Name in the Formula Bar
When you click on a cell with a nested formula, the Formula Bar shows the entire formula.
If you click directly on the name of the top-level function (e.g., IF in the example above), Excel will often open the Function Arguments dialog for that function.
This dialog helps you edit the inputs to the function in a structured way.
If you’ve drilled down into a nested function (like editing SUM inside IF), clicking the top-level function name lets you return to the outer function.
✅ Why Advanced Formulas Are Common
Accessibility: Most business users already have Excel and know the basics.
Built-in Functions: Excel has hundreds of functions for math, stats, finance, text, and logic.
No Coding Required: You can build complex logic without writing code.
Immediate Feedback: You see results instantly in cells.
❌ Limitations
Scalability: Large datasets slow Excel down.
Maintainability: Nested formulas can become unreadable and error-prone.
Automation: Limited unless you use VBA or integrate with Power Query or Office Scripts.
Version Control: Difficult to track changes or collaborate on logic.
✅ Why Python Might Be Better
Readability: Code is often easier to understand and maintain than deeply nested Excel formulas.
Libraries: Tools like pandas, numpy, and openpyxl make data manipulation powerful and flexible.
Automation: You can automate tasks across files, folders, or even web APIs.
Scalability: Handles large datasets with ease.
Reusability: Functions and scripts can be reused and shared easily.
❌ Challenges
Learning Curve: Requires programming knowledge.
Setup Overhead: Needs Python environment and possibly IDEs like VS Code or Jupyter.
Less Visual: No built-in grid interface like Excel for quick visual analysis.
Use Excel when:
You need quick analysis or dashboards.
You're collaborating with non-technical users.
The dataset is small to medium-sized.
You want to avoid writing code.
Use Python when:
You're working with large or complex datasets.
You need automation or integration with other systems.
You want reproducibility and version control.
You're comfortable with coding or want to teach students programming skills.
Here's a side-by-side example of how a simple database-like task would be handled in Excel using a formula vs SQL using a query.
Region
Salesperson
SalesAmount
You want to calculate the total sales for the "East" region.
Assuming your data is in a table named SalesData, and the columns are in:
A2:A100 for Region
C2:C100 for SalesAmount
You could use:
Excel
=DSUM(SalesData, "SalesAmount", A1:B2)
Where:
SalesData is the named range of your table.
"SalesAmount" is the field you're summing.
A1:B2 is a criteria range like:
A1: Region
A2: East
Alternatively, using a more modern formula:
Excel
=SUMIFS(C2:C100, A2:A100, "East")
SELECT SUM(SalesAmount)
FROM SalesData
WHERE Region = 'East';
Review: Budgeting templates
Templates related to your major / interests
File command tab and choose Options, Select Customize Ribbon in the left pane, Select the Developer box in the Main Tabs group
You use Solver when there is no single formula that can directly give you the “best” answer.
Copy‑and‑paste and formulas calculate. Solver optimizes.
Why use Solver?
1. When you’re trying to find the best answer, not just an answer
Excel formulas answer questions like:
“What is total profit?”
“What is the average cost?”
Solver answers questions like:
“What values should I choose to maximize profit?”
“How can I minimize cost while meeting constraints?”
Solver adjusts inputs automatically until it finds the optimal solution.
2. When the problem involves constraints
Most real‑world decisions have limits:
Budget caps
Staffing limits
Time limits
Capacity limits
Solver lets you say:
Maximize profit
Subject to:
Budget ≤ $50,000
Hours ≤ 40
Production ≥ demand
Normal formulas can check constraints; Solver can respect them while finding the best outcome.
3. When trial‑and‑error would be painful
Without Solver, you’d be:
Guessing input values
Recalculating
Guessing again
Hoping you didn’t miss something better
Solver:
Systematically tests combinations
Stops when improvement is no longer possible
Finds results humans would likely never try
✅ Faster
✅ More accurate
✅ Less frustrating
4. When decisions affect each other
Many decisions are interconnected:
Producing more of Product A reduces capacity for Product B
Hiring affects costs, productivity, and scheduling
Pricing affects demand, revenue, and profit
Solver handles multiple variables changing at once, which formulas struggle with.
5. Because real business problems are optimization problems
Solver mirrors how decisions are made in:
Operations management
Supply chain
Finance
Scheduling
Marketing mix decisions
In other words:
Solver turns Excel from a calculator into a decision‑support tool.
Simple example
Question:
How many units of Products A and B should we produce to maximize profit?
You need Solver because:
Profit depends on quantities
Quantities are unknown
There are limits on labor and materials
There is no single formula that gives the answer. Solver finds it.
When you don’t need Solver
Solver is overkill if:
The input values are already known
You’re just calculating totals or averages
There are no constraints or decisions to make
If there’s nothing to “decide,” Solver isn’t needed.
One‑sentence takeaway
“Formulas calculate results. Solver finds the best decisions.”
Or slightly more business‑y:
“Use Solver when Excel needs to choose values, not just compute them.”
Why use an array formula instead of copying and pasting?
1. One formula instead of many (consistency)
With copy‑and‑paste, you’re really creating dozens or hundreds of separate formulas. All it takes is one accidental edit and your results are inconsistent.
An array formula:
Uses one formula
Produces many results
Guarantees every value is calculated the same way
✅ Fewer opportunities for human error
✅ Easier to audit and explain
2. Automatic updates when data changes
Array formulas are dynamic.
If:
You add rows
Remove rows
Change the input range size
A modern Excel array formula (with spilled arrays) automatically adjusts—no re‑copying required.
Copy‑and‑paste:
Requires you to remember to drag formulas again
Often leads to missing rows or extra formulas referencing blanks
3. Cleaner, shorter spreadsheets
Array formulas often replace:
Helper columns
Repeated calculations
Complex cell‑by‑cell logic
Example idea (conceptually):
Copy‑paste approach → 50 formulas down a column
Array formula → 1 formula, 50 results
✅ Less clutter
✅ Easier for someone else to understand your file
4. Better performance
This surprises people.
Excel is optimized to calculate fewer, smarter formulas rather than thousands of near‑identical ones. Large models often recalc faster with array formulas than with copied formulas.
This matters in:
Financial models
Dashboards
Large data sets
5. More powerful calculations
Some calculations are hard or ugly with copy‑and‑paste but elegant with arrays:
Conditional logic across ranges
Multi‑criteria calculations
Row‑by‑row math without helper columns
Array formulas let you say:
“Apply this logic to the entire range at once.”
6. Reduces formula drift
“Formula drift” happens when copied formulas slowly change:
Someone edits one cell
References break
Absolute/relative references get messed up
Array formulas eliminate drift because:
Users usually can’t edit just one result
The logic stays centralized
When copy‑and‑paste is still fine
Array formulas are powerful, but not mandatory.
Copy‑and‑paste is okay when:
The calculation is simple
The range is small
The model is short‑lived
You’re teaching basic formula concepts
Think of array formulas as:
A professional‑grade upgrade, not a beginner requirement.
The bottom-line explanation for students
“Copy‑and‑paste repeats work. Array formulas scale work.”
“If you want Excel to think row‑by‑row for you instead of you dragging formulas, use an array formula.”
A histogram is a column chart that illustrates the frequency of each data point in a data set. The Histogram tool in the ToolPak uses two sets of values, the data to be analyzed and the bin range. A bin range is a list of values that sets low and high values for each column. Each column in a histogram is a bin.
Guided Project video: https://youtu.be/drPIjmgR_ts
Independent Project video: https://www.youtube.com/watch?v=5QI_ijeKvog