Skip to navigation Skip to main content
Smart Cycle Discounts is now available on WordPress.org — Download Free
🎉 SCD is now available — Download Free
  • WordPress
    WordPress Plugins
    View all
    Smart Cycle Discounts A cycling discount mark: rotating arrows around a center badge that cycles commerce icons.

    Smart Cycle Discounts

    Automate discount campaigns with scheduling, analytics, and smart product targeting.

    5 Discount Types Recurring Campaigns
    Free Pro from $59

    TrustLens

    Customer trust intelligence for WooCommerce. Score customers, spot abuse, protect revenue.

    Trust Scores Abuse Detection
    Free Pro from $79

    New Plugin

    Coming Soon

    Something exciting is in the works. Join the waitlist to be first to know.

    Get Notified
    Notify Me
    Secure Checkout
    WordPress.org
    14-Day Refund
    Resources
    Documentation Guides & tutorials
    Discount Calculator Plan your strategy
    Support Get help
    SCD Changelog Discount plugin updates
    TrustLens Changelog Trust intelligence updates
    Get notified on new releases
  • Affiliate
  • Blog
  • DOCS
    Docs & Resources

    Choose a plugin or WooCommerce resource to keep moving

    Smart Cycle Discounts Automated discount campaigns for WooCommerce
    Available
    TrustLens Customer trust intelligence documentation for WooCommerce
    Live
    Docs Home FAQ Calculator Get Support
    WordPress tools that solve real problems
  • Contact Us
  • About
    Company

    Our Story

    Founded 2020

    Built by store owners, for store owners. We create WordPress tools that solve real problems.

    Learn more
    Built from Experience Real solutions we use ourselves
    Time is Precious Simple, intuitive tools
    Real Support Talk to the founders
    Legal & Contact
    Contact Us Privacy Policy Terms of Service Refund Policy
    14-Day Money-Back Guarantee No questions asked
GET STARTED

Getting Started

5
  • What is Smart Cycle Discounts?
  • Installation Guide
  • Creating Your First Campaign
  • Plugin Dashboard Overview
  • Free & Pro Features

Campaign Wizard

6
  • Campaign Wizard Overview
  • Step 1 – Basic Information
  • Step 2 – Product Selection
  • Step 3 – Discount Configuration
  • Step 4 – Campaign Scheduling
  • Step 5 – Review & Launch

Product Selection

5
  • All Products Mode
  • Specific Products Mode
  • Random Products Mode
  • Smart Selection Mode
  • Product Search Tips

Discount Types

7
  • Percentage Discounts
  • Fixed Amount Discount
  • Buy One Get One (BOGO)
  • Tiered Volume Pricing
  • Spend Threshold Discounts
  • Bundle Discounts
  • Discount Stacking and Priority

Scheduling

5
  • Setting Campaign Dates
  • Timezone Configuration
  • Recurring Campaigns
  • Campaign Status Explained
  • Automatic Activation

Campaign Management

7
  • Campaign List
  • Editing Existing Campaigns
  • Duplicating Campaigns
  • Bulk Actions
  • Campaign Priority System
  • Campaign Overview Panel
  • Campaign Intelligence System

Setting Configuration

5
  • General Settings
  • Display Settings
  • Advanced Settings
  • Tools and Diagnostics
  • License Management

Use Cases

7
  • Flash Sale Campaign
  • Seasonal Sale Campaign
  • Weekend Sale Recurring
  • BOGO Promotion
  • Volume Discount Campaign
  • Cart Threshold Promotion
  • Bundle Discount Campaign

Developer Documentation

5
  • Hooks and Filters Reference
  • Rest API Overview
  • Custom Discount Integration
  • Template Customization
  • Database Schema

Troubleshooting

6
  • Campaign Not Activating
  • Discounts Not Displaying
  • Scheduling Issues
  • Product Search Not Working
  • Performance Optimization
  • Common Error Messages

FAQ

3
  • General
  • Compatibility
  • Pricing & Licensing

Notifications

5
  • Email Provider Setup
  • Email Notifications Setup
  • Basic Notifications
  • Proactive Alerts
  • Low Stock Alerts

Cycle AI

6
  • What is Cycle AI
  • Creating Campaign With AI
  • Refining With Conversation
  • Managing Campaigns With AI
  • Prompt Writing Tips
  • Rate Limit And Troubleshooting
View Categories
  • Home
  • Docs
  • Smart Cycle Discounts
  • Analytics Reporting
  • Exporting Reports

Exporting Reports

1 min read

Export your campaign analytics data for external analysis, reporting, or record-keeping. Smart Cycle Discounts Pro supports multiple export formats. This feature requires Smart Cycle Discounts Pro.


Export Options #

Export Formats #

Format Best For Opens In
CSV Spreadsheet analysis Excel, Google Sheets, Numbers
JSON Developer integration Code editors, APIs

Exporting from Analytics Dashboard #

  1. Go to SC Discounts → Analytics
  2. Select your desired date range
  3. Click the “Export” button (top right)
  4. Choose export format (CSV or JSON)
  5. Click “Download”

The export includes all data visible on the current dashboard view.


What Gets Exported #

Summary Data #

  • Total revenue
  • Total conversions
  • Total discount amount
  • Average order value
  • Date range of export

Campaign Data #

Per-campaign breakdown:

  • Campaign ID and name
  • Status
  • Revenue
  • Conversions
  • Units sold
  • Discount amount given
  • Start and end dates

Time Series Data #

Daily/weekly/monthly totals (based on chart granularity):

  • Date
  • Revenue
  • Conversions
  • Discount amount

CSV Export Format #

File Structure #

analytics-export-2025-12-01-to-2025-12-31.csv

Date,Campaign,Revenue,Conversions,Units_Sold,Discount_Given
2025-12-01,Black Friday Sale,1250.00,25,42,312.50
2025-12-01,Weekly Deal,450.00,12,18,67.50
2025-12-02,Black Friday Sale,980.00,19,31,245.00
...

CSV Options #

  • Delimiter: Comma (,) by default
  • Encoding: UTF-8
  • Header row: Included

JSON Export Format #

File Structure #

{
  "export_date": "2025-12-31T12:00:00",
  "date_range": {
    "start": "2025-12-01",
    "end": "2025-12-31"
  },
  "summary": {
    "total_revenue": 45000.00,
    "total_conversions": 850,
    "total_discount": 11250.00,
    "avg_order_value": 52.94
  },
  "campaigns": [
    {
      "id": 123,
      "name": "Black Friday Sale",
      "status": "expired",
      "revenue": 25000.00,
      "conversions": 450,
      "units_sold": 680,
      "discount_given": 6250.00
    },
    ...
  ],
  "daily_data": [
    {
      "date": "2025-12-01",
      "revenue": 1700.00,
      "conversions": 37,
      "discount": 380.00
    },
    ...
  ]
}

Exporting Specific Campaigns #

Single Campaign Export #

  1. Click on a campaign name to open overview panel
  2. Click “Export Data” in the panel
  3. Choose format and download

Filtered Export #

  1. Use campaign filters (status, search)
  2. Only filtered campaigns export

Using Exported Data #

In Excel/Google Sheets #

  1. Open CSV file directly
  2. Create pivot tables for analysis
  3. Build charts and visualizations
  4. Combine with other business data

For Reporting #

  • Monthly/quarterly executive summaries
  • Marketing performance reports
  • Finance reconciliation
  • Board presentations

For Integration #

  • Import into BI tools (Tableau, Power BI)
  • Feed into data warehouses
  • Sync with CRM systems
  • Build custom dashboards

Export Tips #

Best Practices #

  1. Export regularly: Weekly or monthly exports create historical records
  2. Match date ranges: Export periods that align with business reporting cycles
  3. Archive exports: Keep downloaded files organized by date
  4. Verify data: Spot-check exported numbers against dashboard

Large Exports #

For very large date ranges:

  • Export may take longer to generate
  • Consider breaking into smaller periods
  • Browser download dialog appears when ready

Automation #

Scheduled Reports #

Set up automatic scheduled exports delivered via email. See Scheduled Reports documentation.

REST API #

Pro users can access analytics data via REST API for automated retrieval. See Developer Documentation.


Data Included per Export Type #

Data Type CSV JSON
Summary totals ✓ ✓
Campaign breakdown ✓ ✓
Daily/time series ✓ ✓
Product details Optional ✓
Geographic data Optional ✓
Metadata Header row ✓

Troubleshooting Exports #

Export button not working #

  • Check browser pop-up blocker
  • Ensure JavaScript is enabled
  • Try a different browser

CSV opens incorrectly in Excel #

  • Use “Import” instead of “Open” in Excel
  • Specify UTF-8 encoding
  • Select comma delimiter

Data seems incomplete #

  • Verify date range selection
  • Check if filters are applied
  • Export includes only visible data scope

Updated on February 14, 2026

What are your Feelings

  • Happy
  • Normal
  • Sad

Share This Article :

  • Facebook
  • X
  • LinkedIn
  • Pinterest
Traffic and Geographic DataScheduled Reports
Table of Contents
  • Export Options
    • Export Formats
  • Exporting from Analytics Dashboard
  • What Gets Exported
    • Summary Data
    • Campaign Data
    • Time Series Data
  • CSV Export Format
    • File Structure
    • CSV Options
  • JSON Export Format
    • File Structure
  • Exporting Specific Campaigns
    • Single Campaign Export
    • Filtered Export
  • Using Exported Data
    • In Excel/Google Sheets
    • For Reporting
    • For Integration
  • Export Tips
    • Best Practices
    • Large Exports
  • Automation
    • Scheduled Reports
    • REST API
  • Data Included per Export Type
  • Troubleshooting Exports
    • Export button not working
    • CSV opens incorrectly in Excel
    • Data seems incomplete
Newsletter

Insights that grow your business

Join thousands of WooCommerce store owners who get actionable tips, plugin updates, and industry news every week.

We respect your privacy. Unsubscribe at any time.

Weekly updates — Fresh content every Tuesday
Exclusive content — Tips you won't find on our blog
Early access — Be first to know about new plugins
Webstepper
Weekly WooCommerce Tips
Just now
This week: 5 proven strategies to boost your average order value using smart discount campaigns...
New issue!
Webstepper

Tools for store owners who'd rather grow than grind.

Simple, powerful plugins that help WooCommerce store owners sell more — without the learning curve.

500+ happy stores

Products

  • Smart Cycle Discounts
  • TrustLens
  • Discount Calculator
  • Sale Calendar

Company

  • About Us
  • Blog
  • Contact
  • Affiliates

Resources

  • Help Center
  • Guides
  • Roadmap
  • Status

Questions? We actually answer.

Real humans, real help. No bots, no runaround. Usually within a few hours.

Get in touch

© 2026 Webstepper. All rights reserved.

Privacy Terms Refunds
Visa Mastercard PayPal Apple Pay Google Pay & more
  • WordPress
    Back
    WordPress Plugins
    View all
    Smart Cycle Discounts A cycling discount mark: rotating arrows around a center badge that cycles commerce icons.

    Smart Cycle Discounts

    Automate discount campaigns with scheduling, analytics, and smart product targeting.

    5 Discount Types Recurring Campaigns
    Free Pro from $59

    TrustLens

    Customer trust intelligence for WooCommerce. Score customers, spot abuse, protect revenue.

    Trust Scores Abuse Detection
    Free Pro from $79

    New Plugin

    Coming Soon

    Something exciting is in the works. Join the waitlist to be first to know.

    Get Notified
    Notify Me
    Secure Checkout
    WordPress.org
    14-Day Refund
    Resources
    Documentation Guides & tutorials
    Discount Calculator Plan your strategy
    Support Get help
    SCD Changelog Discount plugin updates
    TrustLens Changelog Trust intelligence updates
    Get notified on new releases
  • Affiliate
  • Blog
  • DOCS
    Back
    Docs & Resources

    Choose a plugin or WooCommerce resource to keep moving

    Smart Cycle Discounts Automated discount campaigns for WooCommerce
    Available
    TrustLens Customer trust intelligence documentation for WooCommerce
    Live
    Docs Home FAQ Calculator Get Support
    WordPress tools that solve real problems
  • Contact Us
  • About
    Back
    Company

    Our Story

    Founded 2020

    Built by store owners, for store owners. We create WordPress tools that solve real problems.

    Learn more
    Built from Experience Real solutions we use ourselves
    Time is Precious Simple, intuitive tools
    Real Support Talk to the founders
    Legal & Contact
    Contact Us Privacy Policy Terms of Service Refund Policy
    14-Day Money-Back Guarantee No questions asked