Financial Planning
Business Intelligence
Predictive Analytics

Forecasting with AI

Finyna
Finyna Analytics Team
September 18, 2025
18 min read

Learn how to build effective forecasting models with Finyna

Introduction to Forecasting with AI

Forecasting is the process of making predictions based on past and present data to guide strategic business decisions. Whether you're projecting revenue, planning inventory, or budgeting resources, accurate forecasts are essential for business success.

Finyna can help you build sophisticated forecasting models in Excel, incorporating time-series analysis, seasonality factors, trend projections, and scenario planning. With AI assistance, you can create more accurate forecasts with less effort, and gain deeper insights into the driving factors behind your business trends.

How to Use Finyna for Forecasting

Below are examples of effective prompts for different forecasting scenarios, along with sample responses from our AI assistant. These examples demonstrate how to structure your queries to get the most useful forecasting models and insights.

Sales Forecasting with Seasonality

I have monthly sales data for the past 2 years and need to forecast the next 12 months. Our business is seasonal with peaks during summer and December. Can you help me build a forecasting model in Excel?

I'd be happy to help you build a seasonal sales forecasting model in Excel. This is a perfect use case for a time series model that captures both trend and seasonality.

Approach Overview

For seasonal forecasting with 2 years of historical data, I recommend using either:

  1. Seasonal Decomposition Method - Separates your sales into trend, seasonal, and random components
  2. Holt-Winters Triple Exponential Smoothing - Great for capturing seasonality in short time series

Let's build both so you can compare the results!

Step 1: Data Organization

First, organize your data in Excel with this structure:

DateMonthYearSales
1/1/2021Jan202112,500
2/1/2021Feb202113,200
............
12/1/2022Dec202222,300

Step 2: Calculate Monthly Seasonal Indices

Let's create a seasonal index for each month:

Month2021 Sales2022 SalesAverageSeasonal Index
Jan12,50016,20014,3500.85
Feb13,20017,10015,1500.90
Mar14,80019,00016,9001.00
Apr16,50021,40018,9501.12
May19,20024,90022,0501.31
Jun21,60028,10024,8501.47
Jul23,80030,90027,3501.62
Aug22,10028,70025,4001.51
Sep18,40023,90021,1501.25
Oct16,90021,90019,4001.15
Nov15,30019,80017,5501.04
Dec17,20022,30019,7501.17
Total211,500274,300242,90012.00

Note: The Seasonal Index is calculated by dividing each month's average by the overall monthly average (242,900 ÷ 12 = 20,241)

Step 3: Project the Trend

The annual growth from 2021 to 2022 is approximately 30% (274,300 ÷ 211,500 = 1.297). We need to determine if we expect this growth to continue, slow down, or accelerate.

Let's create a linear trend projection:

excel
=FORECAST(future_month_number, historical_sales, historical_month_numbers)

Step 4: Apply Seasonal Factors to the Trend

For each future month, multiply the trend forecast by the appropriate seasonal index:

excel
=trend_forecast * seasonal_index_for_month

Step 5: Complete Forecast Model

Here's the complete forecast model with three different growth scenarios:

MonthConservative (15%)Moderate (25%)Aggressive (35%)Seasonal Index
Jan 202321,70023,60025,4000.85
Feb 202322,90024,90026,9000.90
Mar 202325,50027,80029,9001.00
Apr 202328,60031,10033,5001.12
May 202333,30036,20039,0001.31
Jun 202337,50040,80044,0001.47
Jul 202341,30044,90048,4001.62
Aug 202338,40041,80045,0001.51
Sep 202331,90034,80037,5001.25
Oct 202329,30031,90034,3001.15
Nov 202326,50028,80031,1001.04
Dec 202329,80032,50035,0001.17
Total367,200399,100429,900
Growth34%45%57%

Excel Formulas for Implementation

Here are the key formulas for your Excel model:

1. Seasonal Index Calculation:

excel
=AVERAGE(IF(month_column=1,sales_column))/AVERAGE(sales_column)

2. Trend Forecast (using FORECAST or TREND function):

excel
=FORECAST(25, B2:B24, A2:A24)

Where 25 is the next month number, B2:B24 contains historical sales, and A2:A24 contains month numbers (1-24).

3. Final Forecast (trend × seasonal factor):

excel
=trend_forecast * seasonal_index_for_month

4. For Holt-Winters Method using Excel's FORECAST.ETS function:

excel
=FORECAST.ETS(future_date, historical_sales, historical_dates, 1, 1)

Visualization Tips

For effective visualization of your forecast:

  1. Create a line chart showing historical sales and forecasted sales with different scenarios
  2. Add a secondary axis showing year-over-year growth percentages
  3. Include confidence intervals (±10% is a good starting point)

Would you like me to create a more detailed model specific to your business or discuss how to incorporate additional factors like pricing changes or marketing campaigns?

Demand Forecasting for Inventory Management

I need to forecast product demand for inventory planning. We have 5 product categories and frequent stockouts for our most popular items. How can I build a robust forecasting model?

I'd be happy to help you build a robust demand forecasting model for inventory management. This is a critical business function that balances inventory costs against stockout risks.

Inventory Forecasting Approach

For multi-category product demand forecasting with stockout concerns, I recommend a structured approach that combines statistical forecasting with safety stock calculations.

Step 1: Data Organization by Product Category

First, organize your historical data by product category:

DateCategory ACategory BCategory CCategory DCategory E
Jan-221,2503,4208901,6802,340
Feb-221,3103,5809201,7202,450
..................
Dec-221,8505,1201,3802,4603,520

Step 2: Calculate Key Metrics for Each Category

For each product category, calculate these important metrics:

MetricCategory ACategory BCategory CCategory DCategory E
Avg Monthly Demand1,5204,2301,0802,0502,890
Std Deviation305760215410580
Growth Trend3.2%4.1%2.8%3.5%3.9%
Seasonality Factor (Q4)1.351.221.181.421.28
Lead Time (days)1421101815
Stockout Frequency8%12%5%14%9%

Step 3: Demand Forecast Calculation

For each category, we'll use a time series forecast that incorporates:

  • Base demand
  • Growth trend
  • Seasonality
  • Special events (like promotions)

Here's a simple formula:

excel
=BASE_DEMAND * (1 + TREND) * SEASONAL_FACTOR * EVENT_FACTOR

Let's forecast the next 6 months for Category B (your highest volume):

MonthBaseGrowthSeasonalEventForecast
Jan-234,2301.0410.921.004,050
Feb-234,2301.0450.941.004,160
Mar-234,2301.0491.051.004,660
Apr-234,2301.0521.031.255,720
May-234,2301.0561.061.004,740
Jun-234,2301.0601.081.004,850

Note: Event factor of 1.25 in April represents a promotional event

Step 4: Safety Stock Calculation

To address stockout issues, calculate appropriate safety stock levels:

excel
=Z_SCORE * STD_DEV * SQRT(LEAD_TIME/30)

Where Z_SCORE is based on your desired service level:

  • 95% service level: Z=1.65
  • 98% service level: Z=2.05
  • 99% service level: Z=2.33

For Category B with frequent stockouts, using a 98% service level:

excel
=2.05 * 760 * SQRT(21/30) = 1,305 units

Step 5: Complete Inventory Plan

For Category B, here's the complete inventory plan:

MonthForecastSafety StockReorder PointRecommended Order
Jan-234,0501,3054,0005,355
Feb-234,1601,3054,1105,465
Mar-234,6601,3054,6105,965
Apr-235,7201,620*5,6657,340
May-234,7401,3054,6906,045
Jun-234,8501,3054,8006,155

*Safety stock increased for promotional period

Reorder Point = Daily demand × Lead time + Safety stock
Recommended Order = Forecast + Safety Stock - Current Inventory

Step 6: Excel Implementation

Key Excel formulas for your model:

1. Moving Average Forecast (simple baseline):

excel
=AVERAGE(C2:C7)

2. Exponential Smoothing (better for trending data):

excel
=FORECAST.ETS(A15,B2:B14,A2:A14)

3. Standard Deviation (for safety stock):

excel
=STDEV(C2:C13)

4. Safety Stock Calculation:

excel
=F2*G2*SQRT(H2/30)

Where F2 = Z-score, G2 = Standard deviation, H2 = Lead time

Dashboard Elements for Your Forecasting Tool

Create a dashboard that includes:

  1. Forecast Accuracy Tracker

    • Actual vs. Forecast by category
    • Mean Absolute Percentage Error (MAPE)
  2. Stockout Risk Heatmap

    • Color-coded visualization of potential stockout risk
  3. Inventory Cost Optimization

    • Holding cost vs. stockout cost balance
  4. Demand Pattern Analysis

    • Seasonality visualization
    • Trend analysis

Would you like me to expand on any specific part of this framework or provide additional formulas for your Excel model?

Revenue Forecasting with Multiple Scenarios

I need to project our company's revenue for the next 3 years with different scenarios. We have 3 revenue streams: Products (60%), Services (30%), and Subscriptions (10%). Our growth has been 15% annually so far.

I'd be happy to help you build a 3-year revenue forecast model with multiple scenarios across your three revenue streams. This type of scenario planning is excellent for strategic decision-making and investor presentations.

Multi-Stream Revenue Forecasting Approach

Let's create a comprehensive revenue forecast that accounts for the different growth patterns of each revenue stream and allows for different future scenarios.

Step 1: Establish Baseline Data

First, let's establish the current baseline for each revenue stream:

Revenue StreamCurrent Revenue% of TotalGrowth Rate
Products$6,000,00060%15%
Services$3,000,00030%15%
Subscriptions$1,000,00010%15%
Total$10,000,000100%15%

Note: I've assumed $10M as your current annual revenue for calculation purposes. Adjust as needed for your actual figures.

Step 2: Define Growth Scenarios

Let's define three scenarios with different growth assumptions for each revenue stream:

Conservative Scenario

  • Products: 10% annual growth
  • Services: 12% annual growth
  • Subscriptions: 18% annual growth

Moderate Scenario (Base Case)

  • Products: 15% annual growth
  • Services: 18% annual growth
  • Subscriptions: 25% annual growth

Aggressive Scenario

  • Products: 20% annual growth
  • Services: 25% annual growth
  • Subscriptions: 35% annual growth

Step 3: Build the 3-Year Forecast Model

Here's the complete 3-year revenue forecast for all three scenarios:

Conservative Scenario

Revenue StreamYear 1Year 2Year 3CAGR
Products$6,600,000$7,260,000$7,986,00010.0%
Services$3,360,000$3,763,200$4,214,78412.0%
Subscriptions$1,180,000$1,392,400$1,643,03218.0%
Total$11,140,000$12,415,600$13,843,81611.5%
YoY Growth11.4%11.5%11.5%

Moderate Scenario (Base Case)

Revenue StreamYear 1Year 2Year 3CAGR
Products$6,900,000$7,935,000$9,125,25015.0%
Services$3,540,000$4,177,200$4,929,09618.0%
Subscriptions$1,250,000$1,562,500$1,953,12525.0%
Total$11,690,000$13,674,700$16,007,47117.0%
YoY Growth16.9%17.0%17.1%

Aggressive Scenario

Revenue StreamYear 1Year 2Year 3CAGR
Products$7,200,000$8,640,000$10,368,00020.0%
Services$3,750,000$4,687,500$5,859,37525.0%
Subscriptions$1,350,000$1,822,500$2,460,37535.0%
Total$12,300,000$15,150,000$18,687,75023.2%
YoY Growth23.0%23.2%23.4%

Step 4: Excel Implementation

Here are the key formulas for implementing this model in Excel:

1. Year 1 Revenue for each stream:

excel
=base_revenue*(1+growth_rate)

2. Subsequent years:

excel
=previous_year*(1+growth_rate)

3. Compound Annual Growth Rate (CAGR):

excel
=(final_value/initial_value)^(1/number_of_years)-1

4. Scenario comparison (variance):

excel
=(aggressive_scenario-conservative_scenario)/conservative_scenario

Step 5: Sensitivity Analysis

Let's create a sensitivity table showing how total Year 3 revenue changes with different growth rates for Products (rows) and Subscriptions (columns):

Year 3 RevenueSubscriptions Growth Rate
Products Growth Rate15%25%35%
8%$14.1M$14.4M$14.7M
12%$15.3M$15.6M$15.9M
15%$16.2M$16.5M$16.8M
18%$17.1M$17.4M$17.7M
22%$18.4M$18.7M$19.0M

Step 6: Key Assumptions & Drivers

Document key assumptions that drive your forecast:

  1. Market Growth Factors

    • Industry growth rate
    • Market share assumptions
    • Competitive landscape changes
  2. Internal Growth Drivers

    • New product launches
    • Geographic expansion
    • Price changes
    • Marketing investments
  3. Revenue Stream Interactions

    • Cross-selling opportunities
    • Bundling strategies
    • Conversion rates between streams

Excel Formulas for Dynamic Scenario Planning

For a more advanced model, incorporate these Excel techniques:

1. Data Tables for sensitivity analysis:

excel
=TABLE(row_input_cell,column_input_cell)

2. Scenario Manager: Set up formal Excel scenarios using the Scenario Manager to easily switch between views.

3. Monte Carlo simulation (with Data Table):

excel
=NORM.INV(RAND(),expected_growth,standard_deviation)

Repeat this across multiple cells to simulate variable growth rates.

Would you like me to focus on a particular aspect of this forecast, such as how to model changing stream percentages over time, or perhaps integrating customer acquisition costs into the model?

Advanced Forecasting with Monte Carlo Simulation

Can you show me how to implement a Monte Carlo simulation in Excel for more realistic financial forecasting? I want to account for uncertainty in our growth assumptions.

I'd be happy to show you how to implement Monte Carlo simulation in Excel for financial forecasting. This is an excellent way to account for uncertainty and generate probability-based projections rather than single-point estimates.

Monte Carlo Simulation for Financial Forecasting

Monte Carlo simulation allows you to model the inherent uncertainty in your forecasts by running thousands of iterations with randomly generated inputs based on your assumptions.

Step 1: Set Up Your Base Model

First, create your standard forecast model in Excel:

YearRevenueGrowth RateExpensesProfit
0$10,000,000-$7,000,000$3,000,000
1=B2*(1+C3)15%=B3*0.7=B3-D3
2=B3*(1+C4)15%=B4*0.7=B4-D4
3=B4*(1+C5)15%=B5*0.7=B5-D5
4=B5*(1+C6)15%=B6*0.7=B6-D6
5=B6*(1+C7)15%=B7*0.7=B7-D7

Step 2: Define Uncertainty Ranges

For Monte Carlo simulation, replace fixed assumptions with probability distributions. For example, instead of a fixed 15% growth rate, define a range with:

  • Mean (most likely): 15%
  • Standard deviation: 5%
  • Distribution: Normal

Step 3: Create Input Cells with Random Functions

Set up cells for your random variables. For a normally distributed growth rate:

excel
=NORM.INV(RAND(),0.15,0.05)

For other types of distributions:

  1. Uniform distribution (equal probability across a range):
excel
=RAND()*(max-min)+min

Example: =RAND()*(0.20-0.10)+0.10 for a uniform distribution between 10% and 20%

  1. Triangular distribution (min, most likely, max):
excel
=IF(RAND()<(most_likely-min)/(max-min), min+SQRT(RAND()*(most_likely-min)*(max-min)), max-SQRT((1-RAND())*(max-most_likely)*(max-min)))

Example: =IF(RAND()<(0.15-0.10)/(0.20-0.10),0.10+SQRT(RAND()*(0.15-0.10)*(0.20-0.10)),0.20-SQRT((1-RAND())*(0.20-0.15)*(0.20-0.10))) for a triangular distribution with 10% min, 15% most likely, 20% max

Step 4: Create the Simulation Table

Set up a data table to run multiple iterations:

IterationYear 1 GrowthYear 2 GrowthYear 3 GrowthYear 4 GrowthYear 5 GrowthFinal Revenue5-Year Profit
1=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)[Formula][Formula]
2=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)[Formula][Formula]
........................
1000=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)=NORM.INV(RAND(),0.15,0.05)[Formula][Formula]

For each row, calculate the final revenue and profit based on the random growth rates.

Step 5: Run the Simulation

Two ways to run the simulation:

  1. Manual recalculation: Press F9 repeatedly to generate new random values
  2. Data Table approach: Use Excel's Data Table feature with a dummy input cell

Here's the Data Table approach (more efficient):

  1. Create a dummy variable in cell A1 (any value)
  2. Select your entire simulation table
  3. Go to Data > What-If Analysis > Data Table
  4. Set Row input cell to A1 (your dummy variable)
  5. Leave Column input cell empty
  6. Click OK

This generates 1000 different scenarios based on your probability distributions.

Step 6: Analyze the Results

Create a summary statistics table to analyze the simulation results:

StatisticYear 5 Revenue5-Year Cumulative Profit
Minimum=MIN(G2:G1001)=MIN(H2:H1001)
10th Percentile=PERCENTILE(G2:G1001,0.1)=PERCENTILE(H2:H1001,0.1)
25th Percentile=PERCENTILE(G2:G1001,0.25)=PERCENTILE(H2:H1001,0.25)
Median=MEDIAN(G2:G1001)=MEDIAN(H2:H1001)
Mean=AVERAGE(G2:G1001)=AVERAGE(H2:H1001)
75th Percentile=PERCENTILE(G2:G1001,0.75)=PERCENTILE(H2:H1001,0.75)
90th Percentile=PERCENTILE(G2:G1001,0.9)=PERCENTILE(H2:H1001,0.9)
Maximum=MAX(G2:G1001)=MAX(H2:H1001)
Standard Deviation=STDEV(G2:G1001)=STDEV(H2:H1001)

Step 7: Create Visualizations

Create these visualizations to better understand the simulation results:

  1. Histogram of Year 5 Revenue:

    • Select your revenue column data
    • Insert > Charts > Histogram
  2. Cumulative Probability (S-Curve):

    • Create a column with percentile values (0%, 10%, 20%...100%)
    • Create corresponding column with =PERCENTILE(result_range,percentile)
    • Create a line chart
  3. Tornado Chart for sensitivity analysis (requires additional analysis)

Sample Results Table

Here's what your Monte Carlo simulation results might look like:

ProbabilityYear 5 RevenueInterpretation
10% chance of exceeding$24.8MHighly optimistic case
25% chance of exceeding$22.1MOptimistic case
50% chance of exceeding$20.2MMedian case (most likely)
75% chance of exceeding$18.4MConservative case
90% chance of exceeding$16.9MHighly conservative case

Advanced Excel Techniques

For more sophisticated simulations, consider these additional techniques:

  1. Correlated variables: If growth rates across years should be correlated (e.g., good years tend to be followed by good years):

    excel
    =NORM.INV(RAND(),previous_year_growth*0.8+0.15*0.2,0.05)
  2. Macro automation: Create a simple VBA macro to run multiple simulations without using Data Tables

  3. Scenario tracking: Add logic to track specific scenarios (e.g., worst 10% cases) to analyze what combinations of inputs lead to poor outcomes

Would you like me to dive deeper into any specific aspect of Monte Carlo simulation in Excel, such as how to model correlations between variables or how to set up more complex probability distributions?

Best Practices for Forecasting

When using Finyna for building forecasting models, keep these best practices in mind:

  1. Start with the right data: Ensure your historical data is clean, consistent, and covers a sufficient time period.

  2. Choose the right method: Select forecasting techniques appropriate for your data patterns and business context.

  3. Account for seasonality: Most businesses have seasonal patterns that must be incorporated into forecasts.

  4. Consider multiple scenarios: Always develop best-case, worst-case, and expected-case forecasts.

  5. Validate your models: Test forecast accuracy against historical data before relying on future projections.

  6. Update regularly: Forecasting is not a one-time exercise. Update your models as new data becomes available.

  7. Combine statistical and judgmental methods: Supplement quantitative models with qualitative expert knowledge.

  8. Communicate uncertainty: Present forecasts with appropriate confidence intervals to acknowledge inherent uncertainty.

Finyna can help you implement these best practices and create sophisticated forecasting models that provide more accurate predictions and deeper business insights.

Share:
Finyna

Finyna Analytics Team

Financial analysis and AI expert at Finyna. Specializing in creating AI-powered tools for financial professionals.

Ready to build your forecasting model?

Start creating sophisticated forecasting models with Finyna. Our assistant can help you with time series analysis, trend projections, scenario planning, and visual dashboards.