Wicked Smart Data
LearnArticlesAbout
Sign InSign Up
LearnArticlesAboutContact
Sign InSign Up
Wicked Smart Data

The go-to platform for professionals who want to master data, automation, and AI — from Excel fundamentals to cutting-edge machine learning.

Platform

  • Learning Paths
  • Articles
  • About
  • Contact

Connect

  • Contact Us
  • RSS Feed

© 2026 Wicked Smart Data. All rights reserved.

Privacy PolicyTerms of Service
All Articles
Pricing Data Projects: Hourly vs Fixed vs Value-Based - A Complete Guide for Data Professionals

Pricing Data Projects: Hourly vs Fixed vs Value-Based - A Complete Guide for Data Professionals

Career Development⚡ Practitioner18 min readApr 27, 2026Updated Apr 27, 2026
Table of Contents
  • Prerequisites
  • Understanding Your Cost Structure Before Any Pricing Model
  • Hourly Pricing: When Time-Based Billing Makes Sense
  • Structured Hourly Engagements
  • Hourly Rate Optimization Strategies
  • Setting Hourly Boundaries
  • Fixed Pricing: Reducing Risk for Both Parties
  • Breaking Down Fixed Price Projects
  • Fixed Price Calculation Framework
  • Scope Protection in Fixed Pricing
  • Value-Based Pricing: Aligning Your Success with Client Outcomes
  • Identifying Quantifiable Value

You've just finished building a machine learning model that could save your client $2 million annually in operational costs. As you prepare to send your invoice, you realize you charged $75/hour for 200 hours of work—$15,000 total. Meanwhile, your client is already talking about rolling this solution out across their entire organization. Something feels fundamentally wrong with this picture.

This scenario plays out constantly in data consulting. You deliver transformative insights and solutions, but your pricing strategy captures only a fraction of the value you create. The difference between hourly, fixed, and value-based pricing isn't just about numbers—it's about fundamentally different relationships with your clients and your work.

By the end of this lesson, you'll understand when to use each pricing model, how to structure proposals that reflect true value, and how to have confident pricing conversations with clients who may be used to paying data professionals by the hour.

What you'll learn:

  • How to calculate your true hourly costs and set sustainable rates
  • When fixed pricing protects both you and your client from scope creep
  • How to identify and price based on measurable business value
  • Frameworks for structuring hybrid pricing models that reduce risk
  • Scripts and templates for pricing conversations that position you as a strategic partner

Prerequisites

You should have experience completing at least 2-3 paid data projects, understand basic business metrics (ROI, cost savings, revenue impact), and feel comfortable discussing technical concepts with non-technical stakeholders.

Understanding Your Cost Structure Before Any Pricing Model

Before diving into pricing models, you need to understand your true costs. Most freelance data professionals dramatically underestimate what they need to charge to be profitable.

Let's start with a realistic cost analysis for a freelance data scientist in a mid-tier US market:

Annual Personal Expenses
├── Housing: $18,000
├── Health insurance: $8,400
├── Retirement savings (20%): $12,000
├── Taxes (self-employment + income): $18,000
├── Business expenses: $6,000
└── Personal living expenses: $24,000
Total needed: $86,400

Billable hours calculation:
├── Work days per year: 250 (50 weeks × 5 days)
├── Actual billable hours per day: 5-6 hours
├── Business development, admin, learning: 2-3 hours daily
├── Realistic billable hours annually: 1,250-1,500
└── Minimum hourly rate needed: $58-69

Add profit margin (30%): $75-90/hour baseline

This baseline rate is what you need just to survive. Everything above this is where you create actual wealth and business growth.

Critical insight: Your hourly rate isn't just about the time you spend coding or analyzing. It needs to cover all the unbillable time you spend learning new technologies, writing proposals, managing client relationships, and running your business.

Hourly Pricing: When Time-Based Billing Makes Sense

Hourly pricing works best for exploratory work, ongoing maintenance, or situations where the scope is genuinely uncertain. But even hourly work needs boundaries and structure.

Structured Hourly Engagements

Instead of open-ended hourly contracts, create structured time-boxed engagements:

Data Discovery & Feasibility Assessment
├── Week 1-2: Data audit and quality assessment (40 hours)
├── Week 3: Prototype model development (20 hours)
├── Week 4: Results presentation and recommendations (15 hours)
└── Total: 75 hours at $120/hour = $9,000

Deliverables:
├── Data quality report with remediation recommendations
├── Proof-of-concept model with performance metrics
├── Technical feasibility assessment
└── Project roadmap for full implementation

This approach gives clients predictable costs while protecting you from scope creep. You're not just selling time—you're selling a structured investigation that leads to clear next steps.

Hourly Rate Optimization Strategies

Your hourly rate should increase based on several factors:

Specialization premium: If you're one of the few people who can work with a specific technology stack or domain, charge accordingly. A data engineer who specializes in real-time fraud detection systems can charge 50-100% more than a generalist.

Project risk factors: Increase rates by 25-50% for:

  • Legacy systems with poor documentation
  • Tight deadlines with penalty clauses
  • Projects requiring security clearances
  • Working with difficult stakeholders

Value indicators: When clients mention budget numbers or potential savings, adjust your rates upward. If they're discussing a $500K software purchase, your $150/hour rate suddenly looks very reasonable.

Setting Hourly Boundaries

Always cap hourly engagements with clear boundaries:

Monthly Retainer Structure
├── Base hours included: 40 hours at $120/hour = $4,800
├── Overflow hours: $150/hour (25% premium)
├── Emergency/weekend work: $200/hour
└── Scope change requests: Require written approval

This protects you from clients who treat hourly contractors as always-available resources.

Fixed Pricing: Reducing Risk for Both Parties

Fixed pricing works best when you can clearly define deliverables and have enough experience to estimate effort accurately. It also allows you to capture efficiency gains as you become more skilled.

Breaking Down Fixed Price Projects

Instead of quoting one large fixed price, break projects into phases with clear decision points:

Customer Churn Prediction System - Phase Structure

Phase 1: Data Foundation ($12,000)
├── Data pipeline architecture and implementation
├── Historical data cleaning and feature engineering
├── Baseline model development and validation
└── Deliverable: Working prediction pipeline + performance report

Phase 2: Model Optimization ($8,000)
├── Advanced feature engineering and selection
├── Hyperparameter tuning and model comparison
├── Performance optimization and scaling
└── Deliverable: Production-ready model with monitoring

Phase 3: Business Integration ($10,000)
├── Dashboard and alerting system development
├── Integration with existing CRM system
├── User training and documentation
└── Deliverable: Complete system with user adoption plan

Total: $30,000 with natural break points for evaluation

This structure lets clients pause between phases if priorities change, while ensuring you're paid for completed work.

Fixed Price Calculation Framework

Use this framework to price fixed engagements:

def calculate_fixed_price(base_hours, complexity_multiplier, risk_factor, profit_margin):
    """
    Calculate fixed project pricing with built-in contingencies
    
    base_hours: Your best estimate of required hours
    complexity_multiplier: 1.2-2.0 based on technical complexity
    risk_factor: 1.1-1.5 based on client/project risks
    profit_margin: 0.3-0.6 based on your positioning
    """
    estimated_hours = base_hours * complexity_multiplier * risk_factor
    base_cost = estimated_hours * your_hourly_rate
    final_price = base_cost * (1 + profit_margin)
    
    return {
        'estimated_hours': estimated_hours,
        'base_cost': base_cost,
        'final_price': final_price,
        'effective_hourly': final_price / base_hours
    }

# Example calculation
project_pricing = calculate_fixed_price(
    base_hours=120,
    complexity_multiplier=1.4,  # Moderately complex
    risk_factor=1.2,            # Some unknowns
    profit_margin=0.4           # 40% profit margin
)

print(f"Quote: ${project_pricing['final_price']:,.0f}")
print(f"Effective hourly rate: ${project_pricing['effective_hourly']:.0f}")
# Output: Quote: $28,224, Effective hourly rate: $235

Scope Protection in Fixed Pricing

Fixed price contracts need ironclad scope protection. Here's how to structure change requests:

Change Request Process
├── Any scope changes require written approval
├── Changes are priced at 150% of standard hourly rate
├── Timeline impacts are recalculated and communicated
└── Client signs off on new timeline and budget before work begins

Minor changes (< 5% of project value): Can be absorbed
Major changes (> 5% of project value): Trigger contract renegotiation

Always include a detailed scope document that specifies what's included and, critically, what's not included.

Value-Based Pricing: Aligning Your Success with Client Outcomes

Value-based pricing is where data professionals can truly capture the worth of their expertise. Instead of selling time or deliverables, you're selling measurable business outcomes.

Identifying Quantifiable Value

The key to value-based pricing is finding metrics that clients care about and can measure. Here are common value drivers for data projects:

Cost reduction scenarios:

  • Process automation that eliminates manual work
  • Predictive maintenance that prevents equipment failures
  • Fraud detection that reduces losses
  • Supply chain optimization that reduces waste

Revenue enhancement scenarios:

  • Recommendation engines that increase sales
  • Price optimization that improves margins
  • Customer segmentation that improves marketing ROI
  • Demand forecasting that reduces stockouts

Let's work through a real value-based pricing scenario:

Case Study: E-commerce Recommendation Engine

Your client is a mid-size e-commerce company with $50M annual revenue. Their average order value is $75, and they convert 2.5% of website visitors. They get 100,000 unique visitors monthly.

Current performance:

  • Monthly visitors: 100,000
  • Conversion rate: 2.5%
  • Monthly orders: 2,500
  • Average order value: $75
  • Monthly revenue: $187,500

Industry benchmarks show that personalized recommendations can:

  • Increase conversion rates by 10-30%
  • Increase average order value by 15-25%

Conservative improvement estimate:

  • Conversion rate increase: 15% (2.5% → 2.875%)
  • AOV increase: 20% ($75 → $90)

New monthly performance:

  • Monthly orders: 2,875
  • Average order value: $90
  • Monthly revenue: $258,750
  • Monthly revenue increase: $71,250
  • Annual revenue increase: $855,000

Value-Based Pricing Structure

With $855K in potential annual value, how do you price this project?

Value-Based Pricing Calculation
├── Annual value created: $855,000
├── Your share of value: 10-25% (industry standard)
├── Potential pricing range: $85,500 - $213,750
├── Risk-adjusted pricing: $120,000 (14% of value)
└── Payment structure: $40K upfront, $80K based on results

This pricing captures significantly more value than time-based approaches while still providing massive ROI for the client.

Structuring Value-Based Contracts

Value-based pricing requires careful contract structure to ensure both parties are protected:

Performance-Based Payment Structure

Base Payment (33%): $40,000
├── Covers system development and initial deployment
├── Paid in milestones during development
└── Ensures you're compensated for core work

Performance Payment (67%): $80,000
├── Measured over 6-month period post-deployment
├── Based on verified revenue impact
├── Minimum threshold: $500K annual impact
└── Payment schedule: Monthly over 12 months

Success Metrics:
├── Primary: Revenue increase (tracked via client's analytics)
├── Secondary: Conversion rate improvement
└── Measurement period: 6 months after full deployment

Value Discovery Process

To price based on value, you need to understand your client's business deeply. Use this discovery framework:

Financial discovery questions:

  • What's your current revenue/cost in this area?
  • What's the cost of the problem you're trying to solve?
  • What's a 10% improvement worth to you annually?
  • What's your budget for solving this problem?

Impact discovery questions:

  • How do you currently measure success in this area?
  • What would need to happen for this project to pay for itself?
  • What's the cost of doing nothing?
  • How quickly do you need to see results?

Risk discovery questions:

  • What are the biggest obstacles to success?
  • What would cause this project to fail?
  • How will you measure and verify the results?
  • Who else needs to approve the success metrics?

Hybrid Pricing Models: Reducing Risk While Capturing Value

Most successful data professionals use hybrid models that combine elements of hourly, fixed, and value-based pricing to optimize for different types of risk and opportunity.

The Discovery + Value Model

This model starts with fixed-price discovery work that leads to value-based implementation:

Phase 1: Discovery & Proof of Concept (Fixed: $15,000)
├── Business case analysis and value quantification
├── Data audit and feasibility assessment  
├── Prototype development and testing
└── ROI projection and implementation roadmap

Phase 2: Implementation (Value-based: $50,000 + 15% of verified savings)
├── Full system development and deployment
├── Training and change management
├── Performance monitoring and optimization
└── Success measured over 12-month period

This approach reduces risk for both parties while positioning you to capture significant value if the project succeeds.

The Retainer + Success Bonus Model

For ongoing relationships, combine predictable monthly revenue with upside potential:

Monthly Retainer: $8,000
├── Covers ongoing optimization and maintenance
├── Includes monthly performance reporting
├── Provides client with consistent support
└── Gives you predictable revenue base

Quarterly Success Bonuses:
├── 20% of verified cost savings above baseline
├── Measured and paid quarterly
├── Minimum threshold: $25,000 quarterly impact
└── Maximum bonus: $15,000 per quarter

Risk-Adjusted Pricing Scales

Create pricing scales that adjust based on project risk and your confidence level:

def hybrid_pricing_calculator(base_scope_price, confidence_level, value_potential):
    """
    Calculate hybrid pricing based on confidence and value
    
    confidence_level: 0.5-1.0 (how sure you are about scope/timeline)
    value_potential: 0-1.0 (how much measurable value you can create)
    """
    
    if confidence_level >= 0.9 and value_potential >= 0.7:
        # High confidence, high value: Value-based pricing
        pricing_model = "value_based"
        price = base_scope_price * 2.5
        structure = "30% upfront, 70% based on results"
        
    elif confidence_level >= 0.8:
        # High confidence: Fixed pricing with bonus
        pricing_model = "fixed_plus_bonus"
        price = base_scope_price * 1.6
        structure = "Fixed price + 25% bonus for exceeding targets"
        
    elif value_potential >= 0.6:
        # Uncertain scope, clear value: Capped hourly with success fee
        pricing_model = "capped_hourly_plus"
        price = base_scope_price * 1.3
        structure = "Hourly (capped) + success fee"
        
    else:
        # Low confidence/value: Straight hourly with markup
        pricing_model = "hourly_premium"
        price = base_scope_price * 1.8
        structure = "Premium hourly rate due to uncertainty"
    
    return {
        'model': pricing_model,
        'price': price,
        'structure': structure
    }

Hands-On Exercise: Price a Real Data Project

Let's apply these frameworks to a realistic scenario. You're being asked to build a customer lifetime value (CLV) prediction system for a SaaS company.

Client background:

  • B2B SaaS company, $10M ARR
  • 2,000 active customers
  • Average customer pays $5,000 annually
  • Current churn rate: 15% annually
  • They want to predict which customers are likely to churn and take preventive action

Your task: Develop pricing proposals using all three models.

Step 1: Estimate the Value

Calculate the potential impact of reducing churn:

# Current situation
annual_revenue = 10_000_000
customers = 2_000
avg_customer_value = annual_revenue / customers  # $5,000
current_churn_rate = 0.15
customers_lost_annually = customers * current_churn_rate  # 300 customers
revenue_lost_annually = customers_lost_annually * avg_customer_value  # $1.5M

# Improved situation (realistic 20% churn reduction)
churn_improvement = 0.20
new_churn_rate = current_churn_rate * (1 - churn_improvement)  # 12%
new_customers_lost = customers * new_churn_rate  # 240 customers
new_revenue_lost = new_customers_lost * avg_customer_value  # $1.2M

annual_value_created = revenue_lost_annually - new_revenue_lost  # $300K

Step 2: Create Three Pricing Proposals

Hourly Proposal:

Data Science Consulting - Customer Churn Prediction

Phase 1: Discovery and Data Analysis (40 hours @ $150/hour = $6,000)
├── Customer data audit and cleaning
├── Exploratory analysis of churn patterns
├── Feature engineering and initial modeling
└── Feasibility report and recommendations

Phase 2: Model Development (60 hours @ $150/hour = $9,000)
├── Advanced model development and testing
├── Performance optimization and validation
├── Integration planning and documentation
└── Model handover and training

Phase 3: Deployment Support (30 hours @ $150/hour = $4,500)
├── Production deployment assistance
├── Monitoring setup and alerting
├── User training and knowledge transfer
└── Post-deployment support and optimization

Total: 130 hours × $150/hour = $19,500

Fixed Price Proposal:

Customer Churn Prediction System - Fixed Price Engagement

Complete CLV prediction system: $35,000

Deliverables:
├── Production-ready churn prediction model
├── Automated data pipeline for daily scoring
├── Dashboard for customer success team
├── Documentation and training materials
└── 60 days of post-launch support

Timeline: 10 weeks from contract signature
Payment: 50% upfront, 25% at beta deployment, 25% at final delivery

Value-Based Proposal:

Customer Success Optimization Program

Investment: $75,000 + 25% of verified churn reduction value

Value Framework:
├── Current churn cost: $1.5M annually
├── Target improvement: 20% churn reduction
├── Projected annual value: $300K
├── Your share: 25% of verified results ($75K annually)
└── Total first-year value to client: $225K (3:1 ROI)

Payment Structure:
├── Development fee: $75,000 (paid in milestones)
├── Success fee: 25% of measured churn reduction
├── Measurement period: 12 months post-deployment
├── Minimum success threshold: 10% churn reduction
└── Success payments: Quarterly over 18 months

Step 3: Choose Your Recommendation

Based on your assessment:

  • Client sophistication: They understand SaaS metrics and can track churn
  • Project complexity: Moderate - you've built similar systems
  • Relationship: First engagement, but they're open to ongoing partnership
  • Budget signals: They mentioned their current customer success tools cost $100K+

Recommended approach: Hybrid fixed + value model

  • Fixed fee: $45,000 for system development
  • Success bonus: 15% of verified annual churn reduction value
  • This balances risk while capturing upside potential

Common Mistakes & Troubleshooting

Pricing Mistakes That Cost You Money

Mistake 1: Underestimating complexity multipliers Many data professionals double their time estimates but forget that complexity isn't linear. A project that seems twice as complex often takes 3-4x the time due to integration challenges, stakeholder alignment, and unforeseen technical hurdles.

Solution: Use this complexity assessment framework:

Complexity Multipliers:
├── Data quality issues: 1.3-2.0x
├── Multiple stakeholder alignment: 1.2-1.5x  
├── Legacy system integration: 1.5-2.5x
├── Regulatory/compliance requirements: 1.4-2.0x
├── Real-time processing needs: 1.6-2.2x
└── Custom algorithm development: 1.8-3.0x

Mistake 2: Not qualifying budget before proposing You spend 10 hours crafting the perfect $50K proposal only to learn their budget is $15K. This wastes your time and positions you as overpriced.

Solution: Always ask budget qualification questions:

  • "What range were you thinking for this type of project?"
  • "What's the cost of not solving this problem?"
  • "How much are you currently spending on [related area]?"

Mistake 3: Competing on price instead of value When clients get multiple proposals, don't automatically assume the lowest price wins. Often, the client is looking for confidence and expertise.

Solution: Differentiate on outcomes and expertise:

Why Our Approach Delivers Better Results:
├── Specific experience with [their industry/problem]
├── Proven methodology that reduces implementation risk
├── Ongoing optimization included in pricing
├── Clear measurement and success criteria
└── References from similar successful projects

Pricing Conversation Scripts

Here are proven scripts for common pricing scenarios:

When a client asks "What's your hourly rate?" Poor response: "I charge $150 per hour." Better response: "My rates vary based on the complexity and value of the project. Tell me more about what you're trying to accomplish, and I can give you a more accurate estimate."

When presenting value-based pricing: Script: "Based on our analysis, this system could save you $300K annually. I'm proposing we price this as a partnership—you pay $X for the development work, and then I earn a percentage of the verified savings. This way, I only make money if you make money."

When handling price objections: Script: "I understand the investment feels significant. Let's look at it this way: the cost of not solving this problem is $Y per year. My fee represents Z% of that annual cost, and we're solving it permanently. What concerns you most about the investment?"

Scope Creep Management

Scope creep kills profitability in every pricing model. Here's how to handle common scenarios:

The "quick question" problem: Client emails: "Can you quickly look at why our model performance dropped last month?"

Response template: "I'd be happy to investigate the performance drop. This type of analysis typically takes 4-6 hours to do properly, including data analysis and documentation of findings. I can add this to your monthly retainer or handle it as a separate $800 task. Which would you prefer?"

The "while you're at it" trap: Client says: "Since you're already building the dashboard, can you add customer segmentation charts?"

Response: "I can definitely add segmentation charts. That would involve additional data modeling and design work - approximately 8 hours at $X rate. Shall I send a change request for approval, or would you prefer to include this in a future phase?"

Value Measurement Challenges

Value-based pricing only works if you can reliably measure results. Here are common measurement problems and solutions:

Problem: Client's analytics are unreliable or inconsistent Solution: Build measurement into your deliverables. Include baseline measurement and monitoring as part of your scope.

Problem: Multiple factors could influence the results Solution: Use control groups, statistical analysis, or focus on metrics that are primarily influenced by your solution.

Problem: Results take too long to measure Solution: Use leading indicators that predict the ultimate value. For churn reduction, track engagement scores and support ticket resolution times.

Summary & Next Steps

The transition from hourly to value-based pricing is one of the most important steps in building a sustainable data consulting business. Each pricing model serves different purposes:

  • Hourly pricing works for discovery work, maintenance, and situations with high uncertainty
  • Fixed pricing provides predictability and lets you capture efficiency gains
  • Value-based pricing aligns your success with client outcomes and maximizes earning potential

The key insights from this lesson:

  1. Know your numbers: You can't price effectively without understanding your true costs and the value you create
  2. Match pricing to project type: Different projects require different pricing approaches
  3. Always lead with value: Even hourly work should be positioned around outcomes, not just time
  4. Protect yourself: Every pricing model needs scope protection and clear boundaries
  5. Measure what matters: Value-based pricing requires reliable measurement systems

Immediate action steps:

  1. Calculate your true hourly cost using the framework from this lesson
  2. Review your last three projects and re-price them using different models
  3. Identify one upcoming proposal where you can test value-based pricing
  4. Create scope protection language for your standard contracts
  5. Develop value discovery questions for your next client conversation

Next in your learning path: We'll cover "Building Long-Term Client Relationships" where you'll learn how to turn one-off projects into ongoing strategic partnerships that command premium pricing.

The data skills that got you your first freelance projects are just the foundation. Learning to price and position those skills strategically is what builds a thriving consulting business.

Learning Path: Freelancing with Data Skills

Previous

Finding and Winning Data Freelance Projects on Upwork and LinkedIn

Related Articles

Career Development🌱 Foundation

Finding and Winning Data Freelance Projects on Upwork and LinkedIn

20 min
Career Development🔥 Expert

Building Productized Services with Power BI and Excel: From Custom Consultant to Product Owner

25 min
Career Development🌱 Foundation

Starting a Data Freelancing Business: Essential Tools, Pricing Strategies, and Landing Your First Clients

18 min

On this page

  • Prerequisites
  • Understanding Your Cost Structure Before Any Pricing Model
  • Hourly Pricing: When Time-Based Billing Makes Sense
  • Structured Hourly Engagements
  • Hourly Rate Optimization Strategies
  • Setting Hourly Boundaries
  • Fixed Pricing: Reducing Risk for Both Parties
  • Breaking Down Fixed Price Projects
  • Fixed Price Calculation Framework
  • Scope Protection in Fixed Pricing
  • Case Study: E-commerce Recommendation Engine
  • Value-Based Pricing Structure
  • Structuring Value-Based Contracts
  • Value Discovery Process
  • Hybrid Pricing Models: Reducing Risk While Capturing Value
  • The Discovery + Value Model
  • The Retainer + Success Bonus Model
  • Risk-Adjusted Pricing Scales
  • Hands-On Exercise: Price a Real Data Project
  • Step 1: Estimate the Value
  • Step 2: Create Three Pricing Proposals
  • Step 3: Choose Your Recommendation
  • Common Mistakes & Troubleshooting
  • Pricing Mistakes That Cost You Money
  • Pricing Conversation Scripts
  • Scope Creep Management
  • Value Measurement Challenges
  • Summary & Next Steps
  • Value-Based Pricing: Aligning Your Success with Client Outcomes
  • Identifying Quantifiable Value
  • Case Study: E-commerce Recommendation Engine
  • Value-Based Pricing Structure
  • Structuring Value-Based Contracts
  • Value Discovery Process
  • Hybrid Pricing Models: Reducing Risk While Capturing Value
  • The Discovery + Value Model
  • The Retainer + Success Bonus Model
  • Risk-Adjusted Pricing Scales
  • Hands-On Exercise: Price a Real Data Project
  • Step 1: Estimate the Value
  • Step 2: Create Three Pricing Proposals
  • Step 3: Choose Your Recommendation
  • Common Mistakes & Troubleshooting
  • Pricing Mistakes That Cost You Money
  • Pricing Conversation Scripts
  • Scope Creep Management
  • Value Measurement Challenges
  • Summary & Next Steps