Excel Crash Course: Master Excel for Financial Analysis

About This Course

Excel Crash Course: Master Excel for Financial Analysis

Welcome to the Excel Crash Course for Financial Analysis, your fast-track guide to mastering Microsoft Excel for finance and accounting professionals. This intensive course transforms beginners into confident Excel users capable of performing sophisticated financial analysis, building dynamic models, and presenting data-driven insights. Whether you’re preparing for a career in finance, accounting, investment banking, or corporate finance, this course provides the essential Excel skills you need to succeed.

Course Overview

Microsoft Excel is the universal language of finance. From Wall Street investment banks to small business accounting departments, Excel powers financial analysis, modeling, reporting, and decision-making worldwide. Mastering Excel isn’t optional for finance professionals—it’s essential. This crash course focuses on the most critical Excel functions, formulas, and techniques that finance professionals use daily.

This course emphasizes practical application over theory. You’ll learn by doing, working through real-world financial scenarios, building models, and solving actual business problems. By the end of this course, you’ll possess the Excel skills that employers demand and the confidence to tackle any financial analysis challenge.

What You Will Learn

  • Essential Excel navigation and interface mastery
  • Critical financial functions and formulas
  • Building professional financial models
  • Data analysis and manipulation techniques
  • Creating dynamic charts and visualizations
  • PivotTables for financial reporting
  • Scenario analysis and sensitivity testing
  • Financial statement analysis in Excel
  • Valuation models and DCF analysis
  • Budget and forecast modeling
  • Best practices for model design and documentation
  • Keyboard shortcuts for maximum efficiency

Part 1: Excel Fundamentals for Finance

1.1 Excel Interface and Navigation

Before diving into advanced financial analysis, you must master Excel’s interface and navigation. Efficiency in Excel comes from knowing how to move quickly through spreadsheets without relying on your mouse.

Essential Navigation Shortcuts:

  • Ctrl + Arrow Keys: Jump to edge of data region
  • Ctrl + Home: Return to cell A1
  • Ctrl + End: Jump to last used cell
  • Ctrl + Page Up/Down: Switch between worksheets
  • F5 or Ctrl + G: Go To dialog for jumping to specific cells
  • Ctrl + F: Find specific values or text
  • Ctrl + H: Find and replace

Selection Shortcuts:

  • Shift + Arrow Keys: Extend selection
  • Ctrl + Shift + Arrow Keys: Select to edge of data region
  • Ctrl + A: Select all data or current region
  • Ctrl + Space: Select entire column
  • Shift + Space: Select entire row

1.2 Excel Formatting for Professional Financial Models

Professional financial models require clear, consistent formatting that enhances readability and reduces errors.

Formatting Best Practices:

  • Color Coding: Blue for inputs, black for formulas, green for links
  • Number Formatting: Consistent decimal places, thousand separators
  • Currency Symbols: Use appropriately for monetary values
  • Percentage Format: For rates, margins, and growth percentages
  • Borders and Shading: Separate sections and highlight key areas
  • Cell Styles: Create custom styles for consistency

Formatting Shortcuts:

  • Ctrl + 1: Format Cells dialog
  • Ctrl + Shift + $: Currency format
  • Ctrl + Shift + %: Percentage format
  • Ctrl + Shift + #: Date format
  • Alt + H + O + I: Auto-fit column width

1.3 Cell References: Relative, Absolute, and Mixed

Understanding cell references is fundamental to building dynamic financial models.

Reference Types:

  • Relative Reference (A1): Changes when copied to other cells
  • Absolute Reference ($A$1): Remains fixed when copied
  • Mixed Reference ($A1 or A$1): One dimension fixed, one relative
Reference Type Example Behavior When Copied
Relative A1 Both row and column adjust
Absolute $A$1 Neither row nor column adjust
Mixed (Column) $A1 Column fixed, row adjusts
Mixed (Row) A$1 Row fixed, column adjusts

Shortcut: Press F4 to cycle through reference types while editing a formula.

Part 2: Essential Financial Functions

2.1 Time Value of Money Functions

Time value of money calculations form the foundation of financial analysis. Excel provides powerful functions for these calculations.

XNPV Function

Formula: =XNPV(discount_rate, cash_flows, dates)

The XNPV function calculates the net present value of cash flows occurring on specific dates. This is superior to the regular NPV function because it accounts for irregular timing of cash flows.

Use Cases:

  • Valuing investment opportunities
  • DCF analysis for company valuation
  • Project evaluation and capital budgeting
  • Real estate investment analysis

Example: Calculate NPV of a project with initial investment of $1,000,000 on 1/1/2024, and cash inflows of $300,000 on 6/30/2024, $400,000 on 12/31/2024, and $500,000 on 12/31/2025, using 10% discount rate.

XIRR Function

Formula: =XIRR(cash_flows, dates)

The XIRR function calculates the internal rate of return for cash flows occurring on specific dates.

Use Cases:

  • Calculating investment returns
  • Evaluating project profitability
  • Private equity fund performance
  • Portfolio return analysis

PMT Function

Formula: =PMT(rate, nper, pv, [fv], [type])

The PMT function calculates the periodic payment for a loan with constant payments and constant interest rate.

Use Cases:

  • Mortgage payment calculations
  • Loan amortization schedules
  • Lease payment analysis
  • Debt service calculations

Example: Monthly payment on $500,000 mortgage at 4.5% annual rate for 30 years:

=PMT(4.5%/12, 30*12, -500000) = $2,533.43

FV Function

Formula: =FV(rate, nper, pmt, [pv], [type])

The FV function calculates the future value of an investment based on periodic, constant payments and a constant interest rate.

Use Cases:

  • Retirement planning calculations
  • Investment growth projections
  • Savings goal planning
  • Annuity valuations

2.2 Lookup and Reference Functions

Lookup functions are essential for retrieving data from tables and creating dynamic financial models.

VLOOKUP Function

Formula: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

The VLOOKUP function searches for a value in the leftmost column of a table and returns a value in the same row from a specified column.

Financial Applications:

  • Retrieving historical financial data
  • Looking up tax rates or discount factors
  • Matching account numbers to descriptions
  • Pulling data from price lists

INDEX and MATCH Functions

Formula: =INDEX(array, MATCH(lookup_value, lookup_array, 0))

The combination of INDEX and MATCH is more flexible and powerful than VLOOKUP, allowing lookups in any direction.

Advantages Over VLOOKUP:

  • Can look left (VLOOKUP only looks right)
  • More efficient with large datasets
  • Doesn’t break when columns are inserted
  • Can return entire rows or columns

XLOOKUP Function (Excel 365)

Formula: =XLOOKUP(lookup_value, lookup_array, return_array)

The modern XLOOKUP function combines the best features of VLOOKUP and INDEX/MATCH with simpler syntax.

2.3 Logical and Conditional Functions

Logical functions enable dynamic decision-making within financial models.

IF Function

Formula: =IF(logical_test, value_if_true, value_if_false)

The IF function performs conditional logic, returning different values based on whether a condition is met.

Financial Applications:

  • Applying different tax rates based on income levels
  • Calculating bonuses based on performance metrics
  • Flagging accounts receivable past due
  • Conditional formatting of financial statements

Nested IF Statements

Multiple IF functions can be nested to handle complex conditional logic:

=IF(Revenue>1000000, "Large", IF(Revenue>500000, "Medium", "Small"))

IFS Function (Excel 365)

Formula: =IFS(logical_test1, value1, logical_test2, value2, …)

The IFS function simplifies nested IF statements with cleaner syntax.

SUMIF and SUMIFS Functions

SUMIF Formula: =SUMIF(range, criteria, [sum_range])

SUMIFS Formula: =SUMIFS(sum_range, criteria_range1, criteria1, …)

These functions sum values based on one or more criteria, essential for financial analysis.

Financial Applications:

  • Summing revenue by product category
  • Calculating total expenses by department
  • Aggregating sales by region and time period
  • Analyzing costs by project and expense type

Part 3: Data Analysis and Manipulation

3.1 Sorting and Filtering Data

Organizing and filtering data is fundamental to financial analysis.

Sorting Data:

  • Single-level sort: Sort by one column
  • Multi-level sort: Sort by multiple columns with priority
  • Custom sort: Define custom sort orders
  • Shortcut: Alt + D + S to open Sort dialog

Filtering Data:

  • AutoFilter: Quick filtering with dropdown menus
  • Number filters: Greater than, less than, between
  • Text filters: Contains, begins with, ends with
  • Date filters: This month, last quarter, custom ranges
  • Shortcut: Ctrl + Shift + L to toggle AutoFilter

3.2 PivotTables for Financial Reporting

PivotTables are one of Excel’s most powerful features for summarizing, analyzing, and presenting financial data.

PivotTable Components:

  • Rows: Categories for grouping data vertically
  • Columns: Categories for grouping data horizontally
  • Values: Numeric data to summarize (sum, average, count)
  • Filters: Criteria to include/exclude data

Financial Reporting Applications:

  • Income statement by department and period
  • Revenue analysis by product, region, and customer
  • Expense tracking by category and cost center
  • Budget vs. actual variance analysis
  • Cash flow reporting by activity type

Creating a PivotTable:

  • Select your data range
  • Insert > PivotTable (or Alt + N + V)
  • Drag fields to Rows, Columns, Values, and Filters areas
  • Format and customize as needed
  • Refresh when source data changes (Alt + F5)

3.3 Data Validation for Error Prevention

Data validation restricts the type of data that can be entered into cells, preventing errors in financial models.

Validation Types:

  • List: Dropdown menu of allowed values
  • Number: Restrict to specific number ranges
  • Date: Ensure dates fall within acceptable ranges
  • Custom: Use formulas for complex validation rules

Financial Model Applications:

  • Restrict growth rate inputs to reasonable ranges
  • Create dropdown lists for scenario selection
  • Ensure dates are entered in correct format
  • Prevent negative values where inappropriate

Part 4: Building Financial Models

4.1 Financial Model Structure and Best Practices

Well-structured financial models are easier to understand, audit, and maintain.

Model Structure:

  • Assumptions Sheet: All inputs and assumptions in one place
  • Calculations Sheet: Intermediate calculations and supporting schedules
  • Financial Statements: Income statement, balance sheet, cash flow statement
  • Valuation/Analysis: DCF, ratios, sensitivity analysis
  • Summary/Dashboard: Key outputs and visualizations

Best Practices:

  • Separate inputs from calculations
  • Use consistent color coding
  • One formula per row, then copy across columns
  • Avoid hard-coding numbers in formulas
  • Include clear labels and documentation
  • Use named ranges for key inputs
  • Build checks and balances
  • Keep formulas simple and transparent

4.2 Building a Three-Statement Model

The three-statement model integrates the income statement, balance sheet, and cash flow statement into a cohesive financial projection.

Model Flow:

  • Step 1: Historical financial data input
  • Step 2: Revenue and expense assumptions
  • Step 3: Income statement projection
  • Step 4: Balance sheet projection
  • Step 5: Cash flow statement derivation
  • Step 6: Circular reference resolution (debt schedule)
  • Step 7: Financial ratios and analysis

Key Linkages:

  • Net income flows from income statement to balance sheet (retained earnings)
  • Depreciation affects income statement, cash flow, and balance sheet
  • Changes in working capital link balance sheet to cash flow statement
  • Interest expense depends on debt balance (circular reference)

4.3 DCF Valuation Model

The Discounted Cash Flow (DCF) model values a company based on projected future cash flows discounted to present value.

DCF Model Components:

  • Revenue Projections: Forecast top-line growth
  • Operating Assumptions: Margins, capex, working capital
  • Free Cash Flow Calculation: EBIT(1-Tax) + D&A – Capex – ΔWC
  • Discount Rate (WACC): Weighted average cost of capital
  • Terminal Value: Value beyond explicit forecast period
  • Enterprise Value: Sum of discounted cash flows
  • Equity Value: Enterprise value – net debt

Terminal Value Methods:

  • Perpetuity Growth: TV = FCF × (1 + g) / (WACC – g)
  • Exit Multiple: TV = EBITDA × Multiple

Part 5: Charts and Data Visualization

5.1 Creating Professional Financial Charts

Effective data visualization communicates financial insights clearly and persuasively.

Chart Types for Finance:

  • Column Charts: Comparing values across categories (revenue by product)
  • Line Charts: Showing trends over time (stock prices, revenue growth)
  • Waterfall Charts: Showing cumulative effect of sequential values (P&L bridge)
  • Combo Charts: Combining chart types (revenue bars with margin line)
  • Scatter Plots: Showing relationships between variables (risk vs. return)

Chart Best Practices:

  • Choose appropriate chart type for your data
  • Use clear, descriptive titles
  • Label axes with units
  • Use consistent colors aligned with your brand
  • Remove unnecessary gridlines and chart junk
  • Highlight key data points or trends
  • Include data labels when helpful

5.2 Dynamic Charts with Formulas

Dynamic charts automatically update when data changes, making them ideal for financial dashboards.

Techniques for Dynamic Charts:

  • Use named ranges with OFFSET function
  • Create charts from PivotTables
  • Use data validation for user-selectable chart parameters
  • Combine IF statements with chart data ranges

Part 6: Scenario and Sensitivity Analysis

6.1 Scenario Analysis

Scenario analysis evaluates how different sets of assumptions affect financial outcomes.

Common Scenarios:

  • Base Case: Most likely outcome
  • Best Case: Optimistic assumptions
  • Worst Case: Pessimistic assumptions

Excel Tools for Scenario Analysis:

  • Scenario Manager: Data > What-If Analysis > Scenario Manager
  • Data Tables: One-variable or two-variable analysis
  • Manual Scenarios: Separate columns for each scenario

6.2 Sensitivity Analysis

Sensitivity analysis examines how changes in individual variables affect outcomes.

One-Variable Data Table:

  • Shows how output changes as one input varies
  • Example: NPV sensitivity to discount rate
  • Create using Data > What-If Analysis > Data Table

Two-Variable Data Table:

  • Shows how output changes as two inputs vary simultaneously
  • Example: NPV sensitivity to both revenue growth and margin
  • Creates a matrix of outcomes

Conclusion

Congratulations on completing the Excel Crash Course for Financial Analysis! You’ve gained essential Excel skills that finance professionals use daily, from fundamental functions to advanced financial modeling techniques. You now have the tools to build professional financial models, perform sophisticated analysis, and present data-driven insights with confidence.

Excel mastery is a journey, not a destination. Continue practicing these skills on real financial data, build increasingly complex models, and explore advanced features as your needs grow. The investment you’ve made in learning Excel will pay dividends throughout your finance career.

Key Takeaways

  • Excel is the universal language of finance and essential for all finance professionals
  • Keyboard shortcuts dramatically increase efficiency and productivity
  • Time value of money functions (XNPV, XIRR, PMT, FV) are fundamental to financial analysis
  • Lookup functions (VLOOKUP, INDEX/MATCH, XLOOKUP) enable dynamic models
  • PivotTables are powerful tools for financial reporting and analysis
  • Proper model structure and best practices ensure accuracy and usability
  • Three-statement models integrate income statement, balance sheet, and cash flow
  • DCF models value companies based on projected cash flows
  • Data visualization communicates financial insights effectively
  • Scenario and sensitivity analysis evaluate risk and uncertainty

Citations

  1. Corporate Finance Institute: Excel for Finance – Top 10 Formulas and Functions
  2. Wall Street Prep: Financial Modeling Guide
  3. Workday: 10 Most Useful Excel Functions for Financial Analysis
  4. Career Principles: The Top 8 Most Important Excel Skills for Finance

Part 7: Advanced Excel Functions for Finance

7.1 Array Formulas and Dynamic Arrays

Array formulas perform multiple calculations on one or more items in an array, returning either a single result or multiple results.

Traditional Array Formulas (Ctrl + Shift + Enter):

  • Calculate multiple values simultaneously
  • Perform complex calculations without helper columns
  • Create powerful conditional aggregations

Dynamic Arrays (Excel 365):

  • Automatically spill results to adjacent cells
  • No need for Ctrl + Shift + Enter
  • Simpler syntax and better performance

New Dynamic Array Functions:

  • FILTER: Filter data based on criteria
  • SORT: Sort data dynamically
  • SORTBY: Sort by another array
  • UNIQUE: Extract unique values
  • SEQUENCE: Generate number sequences
  • RANDARRAY: Generate random number arrays

7.2 Text Functions for Data Cleaning

Financial data often requires cleaning and standardization before analysis.

Essential Text Functions:

  • TRIM: Remove extra spaces
  • UPPER/LOWER/PROPER: Standardize text case
  • LEFT/RIGHT/MID: Extract portions of text
  • LEN: Count characters
  • FIND/SEARCH: Locate text within strings
  • SUBSTITUTE/REPLACE: Replace text
  • CONCATENATE/TEXTJOIN: Combine text

Financial Applications:

  • Extracting account numbers from descriptions
  • Standardizing company names
  • Parsing transaction descriptions
  • Creating unique identifiers

7.3 Date and Time Functions

Date calculations are essential for financial analysis, from calculating interest to determining payment schedules.

Core Date Functions:

  • TODAY(): Current date
  • NOW(): Current date and time
  • DATE(year, month, day): Create date from components
  • YEAR/MONTH/DAY: Extract date components
  • EOMONTH: End of month date
  • EDATE: Date n months before/after
  • NETWORKDAYS: Business days between dates
  • WORKDAY: Date n business days away

Financial Calculations Using Dates:

  • Days between payment dates for interest calculations
  • Aging of accounts receivable
  • Loan maturity dates
  • Fiscal period calculations

Part 8: Financial Statement Analysis in Excel

8.1 Ratio Analysis

Financial ratios provide insights into a company’s performance, efficiency, and financial health.

Liquidity Ratios:

Ratio Formula Interpretation
Current Ratio Current Assets / Current Liabilities Ability to pay short-term obligations
Quick Ratio (Current Assets – Inventory) / Current Liabilities Immediate liquidity without selling inventory
Cash Ratio Cash / Current Liabilities Most conservative liquidity measure

Profitability Ratios:

Ratio Formula Interpretation
Gross Margin Gross Profit / Revenue Profitability after direct costs
Operating Margin Operating Income / Revenue Profitability from operations
Net Margin Net Income / Revenue Bottom-line profitability
ROE Net Income / Shareholders’ Equity Return on equity investment
ROA Net Income / Total Assets Return on total assets

Efficiency Ratios:

  • Asset Turnover: Revenue / Average Total Assets
  • Inventory Turnover: COGS / Average Inventory
  • Days Sales Outstanding: (Accounts Receivable / Revenue) × 365
  • Days Payable Outstanding: (Accounts Payable / COGS) × 365

Leverage Ratios:

  • Debt-to-Equity: Total Debt / Total Equity
  • Debt-to-Assets: Total Debt / Total Assets
  • Interest Coverage: EBIT / Interest Expense
  • Debt Service Coverage: EBITDA / Debt Service

8.2 Trend Analysis and Growth Rates

Analyzing trends over time reveals patterns and helps forecast future performance.

Year-over-Year Growth:

=(Current Year - Prior Year) / Prior Year

Compound Annual Growth Rate (CAGR):

=((Ending Value / Beginning Value)^(1/Number of Years)) - 1

Moving Averages:

  • Smooth out short-term fluctuations
  • Identify underlying trends
  • Use AVERAGE function with appropriate range

8.3 Common Size Analysis

Common size statements express each line item as a percentage of a base figure, enabling comparison across companies and time periods.

Income Statement Common Size:

  • Base: Total Revenue (100%)
  • Each line item expressed as % of revenue
  • Reveals cost structure and margin trends

Balance Sheet Common Size:

  • Base: Total Assets (100%)
  • Each line item expressed as % of total assets
  • Shows asset composition and capital structure

Part 9: Budgeting and Forecasting

9.1 Building a Budget Model

Budget models plan future financial performance and allocate resources.

Budget Components:

  • Revenue Budget: Sales forecasts by product, region, channel
  • Operating Expense Budget: Personnel, marketing, R&D, G&A
  • Capital Expenditure Budget: Major asset purchases
  • Cash Budget: Cash inflows and outflows

Budget Model Structure:

  • Historical actuals as baseline
  • Growth assumptions and drivers
  • Monthly or quarterly detail
  • Department or cost center breakdown
  • Variance analysis (budget vs. actual)

9.2 Variance Analysis

Variance analysis compares actual results to budget, identifying areas requiring attention.

Variance Calculations:

  • Absolute Variance: Actual – Budget
  • Percentage Variance: (Actual – Budget) / Budget
  • Favorable/Unfavorable: Depends on whether variance helps or hurts performance

Conditional Formatting for Variances:

  • Green for favorable variances
  • Red for unfavorable variances
  • Use color scales or data bars for visual impact

9.3 Rolling Forecasts

Rolling forecasts continuously update projections based on latest actuals and revised assumptions.

Rolling Forecast Benefits:

  • More relevant than static annual budgets
  • Adapts to changing business conditions
  • Always maintains forward-looking horizon
  • Improves resource allocation decisions

Implementation in Excel:

  • Use date functions to determine current period
  • IF statements to switch between actuals and forecast
  • Update assumptions regularly
  • Maintain consistent forecast horizon (e.g., 12 months)

Part 10: Excel Productivity Tips and Shortcuts

10.1 Essential Keyboard Shortcuts

Mastering keyboard shortcuts dramatically increases Excel efficiency.

Editing Shortcuts:

  • F2: Edit active cell
  • Ctrl + C/X/V: Copy, cut, paste
  • Ctrl + Z/Y: Undo, redo
  • Ctrl + D: Fill down
  • Ctrl + R: Fill right
  • Ctrl + Enter: Fill selected cells with same value
  • Alt + Enter: New line within cell

Formula Shortcuts:

  • Alt + =: AutoSum
  • Ctrl + `: Toggle formula display
  • F9: Calculate all worksheets
  • Shift + F9: Calculate active worksheet
  • Ctrl + [: Navigate to precedent cells
  • Ctrl + ]: Navigate to dependent cells

Workbook Shortcuts:

  • Ctrl + N: New workbook
  • Ctrl + O: Open workbook
  • Ctrl + S: Save workbook
  • Ctrl + W: Close workbook
  • Ctrl + P: Print
  • Ctrl + Tab: Switch between open workbooks

10.2 Named Ranges for Better Models

Named ranges make formulas more readable and models easier to understand.

Creating Named Ranges:

  • Select cells and type name in Name Box
  • Formulas > Define Name
  • Ctrl + Shift + F3 to create from selection

Benefits of Named Ranges:

  • Formulas are self-documenting (e.g., =Revenue * GrowthRate)
  • Easier to audit and understand models
  • Reduces errors from incorrect cell references
  • Simplifies formula updates

10.3 Error Checking and Auditing

Identifying and fixing errors is critical for reliable financial models.

Common Excel Errors:

  • #DIV/0!: Division by zero
  • #N/A: Value not available (common with lookup functions)
  • #VALUE!: Wrong data type in formula
  • #REF!: Invalid cell reference
  • #NAME?: Excel doesn’t recognize text in formula
  • #NUM!: Invalid numeric value
  • #NULL!: Incorrect range operator

Error Handling Functions:

  • IFERROR: Replace errors with specified value
  • IFNA: Handle #N/A errors specifically
  • ISERROR: Test if cell contains error

Formula Auditing Tools:

  • Trace Precedents: Show cells that feed into formula
  • Trace Dependents: Show cells that depend on current cell
  • Error Checking: Identify potential errors
  • Evaluate Formula: Step through formula calculation

10.4 Protecting and Sharing Financial Models

Protecting models ensures data integrity when sharing with others.

Worksheet Protection:

  • Lock cells containing formulas
  • Unlock input cells for user entry
  • Review > Protect Sheet
  • Set password for protection

Workbook Protection:

  • Protect workbook structure
  • Prevent adding/deleting/hiding sheets
  • Review > Protect Workbook

Sharing Best Practices:

  • Include documentation sheet with instructions
  • Highlight input cells clearly
  • Add comments explaining complex formulas
  • Include version number and date
  • Test model thoroughly before sharing

Final Thoughts and Next Steps

You’ve completed a comprehensive Excel crash course covering the essential skills finance professionals need. From basic navigation to advanced financial modeling, you now have a solid foundation to tackle real-world financial analysis challenges.

Continue Your Excel Journey:

  • Practice regularly with real financial data
  • Build progressively more complex models
  • Learn Power Query for advanced data transformation
  • Explore Power Pivot for large dataset analysis
  • Study VBA for automation (advanced)
  • Join Excel communities and forums
  • Follow Excel experts on social media
  • Take specialized courses in financial modeling

Remember, Excel mastery comes through consistent practice and application. Challenge yourself to use Excel daily, seek opportunities to build models at work, and continuously learn new techniques. The skills you’ve developed will serve you throughout your finance career, opening doors to opportunities in investment banking, corporate finance, financial planning & analysis, and beyond.

Your journey to Excel excellence has begun. Keep building, keep learning, and keep growing your financial analysis capabilities!

Learning Objectives

Learn how to analyze the financial statements using different metrics
Dissect a company's health and profitability.

Material Includes

  • Videos
  • Booklets

Requirements

  • Absolutely no experience is required.
  • Microsoft Excel 2010, 2013, or 2016

Target Audience

  • People Who Want a Successful Career in Finance
  • Anyone Who Wants to Learn How to Create a Corporate Budget

Curriculum

4 Lessons31h 15m

Topic 1

Draft Lesson
Draft Lesson

Topic 2

Topic 3

Your Instructors

Education Shop

4.94/5
32352 Courses
18 Reviews
130775 Students
See more
Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare

Don't have an account yet? Sign up for free