What You're Downloading
The Export CSV button on the Data Table page downloads every draw in the current filtered view as a comma-separated file, named automatically with the game and today's date (e.g., powerball-export-2026-03-29.csv). The columns vary by game type:
- Lotto-style games (Powerball, Mega Millions, SuperLotto Plus, Fantasy 5): Draw #, Date, Ball 1–5 (or 1–6), Bonus Ball, Jackpot Amount
- Daily 4 / Pick 4: Draw #, Date, D1, D2, D3, D4, Combo, Sum
- Daily 3 / Pick 3: Draw #, Date, Time, Digit 1, Digit 2, Digit 3, Combo, Sum, Type, Straight Prize, Box Prize
The Type column for Daily 3 tells you whether the draw was a Triple (all same), Double (two same), or Unique (all different). Straight and Box Prize columns show the prize payout for a $1 wager on that draw.
Filter Before You Export
The export captures exactly what's visible in the table — filters included. Before clicking Export CSV, use the controls at the top of the Data Table to narrow the data:
- Draw Time: Choose Midday only, Evening only, or Both. If you're analyzing midday patterns separately from evening patterns, filter first.
- Start Date / End Date: Limit the export to a specific period — for example, the past 12 months or a specific calendar year.
Leaving filters at their defaults exports the full historical dataset for the selected game, which can be thousands of rows for games with twice-daily draws.
Opening in Excel or Google Sheets
Double-clicking the downloaded CSV will usually open it in your default spreadsheet app. A few tips to make the data easier to work with:
- Freeze the header row: In Excel, go to View → Freeze Panes → Freeze Top Row. In Google Sheets, use View → Freeze → 1 row. This keeps column names visible as you scroll.
- Format the Date column: Excel sometimes imports dates as text. Select the Date column, go to Format Cells, and choose Date format if needed.
- Sort by Sum: Sorting the Sum column ascending or descending instantly shows you which draws had extreme high or low sums — a quick way to spot outliers.
Analysis Ideas
Once your data is in a spreadsheet, there's a lot you can do without any special tools:
- Sum frequency histogram: Use COUNTIF to count how many draws fall in each sum range (e.g., 0–9, 10–18, 19–27). Chart the results to visualize the bell curve.
- Combo type breakdown: For Daily 3, use COUNTIF on the Type column to find how many Triples, Doubles, and Uniques have appeared.
- Digit frequency per position: Use COUNTIF on each digit column separately to see which digits appear most in D1, D2, and D3. Compare this to what the Frequency Analysis tool shows interactively.
- Jackpot growth tracking: For lotto games, sort by Draw # ascending and chart the Jackpot Amount column to see how jackpots grow between resets.
Power Users: Python & Pandas
If you're comfortable with Python, pandas makes the exported CSV even more powerful. Load it with pd.read_csv('your-export-file.csv') and you can calculate rolling averages, run correlation analysis between ball positions, or build frequency tables across any custom date window. The clean column headers are designed to work out of the box with pandas without renaming.
For ideas on what patterns to look for, our Frequency Analysis and Patterns & Trends tools show you the same analyses interactively — the export just lets you do it on your own terms.