Normally I would just leave something like this alone after giving the information I gave - but I'm mindful that others read posts like this.
So, what's the big deal I thought. Now, I have to agree that the CT site is one of the worst I've come across as far as downloading data but not insurmountable.
Here is what I recommend everybody does. Go and get yourself a student version of MS Access. You won't regret it.
First step use Save As from your browser to put it somewhere in your Computer in HTML format.
Open Access and create a database. Import your HTML File answering appropriately the questions the Wizard asks you. From the advanced button fine tune your date settings. Presto, you have it in Access with some errors which Access tells you about. No worries.
Create a query and paste in this SQL:
SELECT [Connecticut Lottery1].ID, [Connecticut Lottery1].Date,
Mid([Pick3],1,1) AS P3C1, Mid([Pick3],3,1) AS P3C2, Mid([Pick3],5,1) AS P3C3,
Mid([Pick4],1,1) AS P4C1, Mid([Pick4],3,1) AS P4C2,
Mid([Pick4],5,1) AS P4C3, Mid([Pick4],7,1) AS P4C4
INTO CT_P3_P4
FROM [Connecticut Lottery1]
WHERE (((Mid([Pick3],1,1)) Like "[0-9]*"));
Boongallalee, Oodnadata there you have it in a Table. Five minutes. To get the rest of the data just repeat the steps - maybe another five minutes for all of it.
Free up your minds - ditch the Excel - it's like a being in a jail looking at that grid all the time.
Colin