"Export to csv" feature for usage data of the online account
A “save to csv” button option in the usage pages.
Choose electricity or gas
Choose a date range (could be one day, or up to 6 months)
Choose granularity (by day, or by half-hour period)
A simple-format csv file is produced that contains the data, with days in rows. There would be a single column on LHS with the date in standard excel-compatible numeric code.
If you asked for “by day” granularity then there would just be a single 2nd column, with kWh per day.
If you asked for “half-hour” granularity then there would be 48 columns to the right of the datecode (so a total of 49 columns), showing kWh usage for each half-hour period for each day.
This links to the following old thread:
… and also this recent chat in the Power Move trial …
Page 2 / 2
Thanks everyone, good to know.
Can someone set this up as a separate feature idea so we can keep this request distinct from the overall CSV download feature?
People seem to be downloading my “Power move” usage calculator, so I’ve updated it (details here)
As requested by Tim, I have now added this as a separate idea here:
Thanks to everyone contributing here. This is so helpful to me. Using this discussion I was able to confirm I am actually being billed correctly for my tariff, E10.
And I thought my data from last winter was lost because it was SSE, I never thought I could download it (nor wanted to), but when I saw Ovo let me compare usage to a year ago, but I couldn’t and was frustrated. But Bright/glowmrkt has given me all that data back to the day the meter was installed. And their Temperature/Humidity sensor looks like exactly what I was trying to find on Amazon last winter.
Anyway, it’s enabled me to draw this pretty chart, which visualises what I thought was happening. Though last December was 3° cooler on average than this year, I am still keeping my home much warmer with a convection heater than with my 30 year old storage heater and for a lot less power. I turned on the storage heater on 25/11, and off again 3/12. The convection heater is getting the house
So thanks!
Fantastic to hear this, @joanx. Was the spike at the beginning of December this year during the cold snap?
Fantastic to hear this, @joanx. Was the spike at the beginning of December this year during the cold snap?
The spike started with the cold snap when I finally relented on the storage heater. It ended when I turned it off, for good. The last couple of days looked like this…
...similar to last year, which I basically spent £10 on electricity, and my room never got above 13°
I’ve got a 20 or 30 year old storage heater, that warms up nicely, but does nothing for the room temperature.
PS. The only device on the OP circuit is a single storage heater.
If you use a Windows 10 PC and understand any PowerShell this code can be used to generate CSV’s from the RAW data as posted earlier in this thread. The data is expected in a given format - one sample included - if yours isn’t the same the code will fail.
The code will output a CSV to the same directory as stated in the cursor entry point.
# Just CTRL + A and then CRTL + C the whole page and paste it between the $Gas = ‘’ and $Electric = '' apostrophes with no spaces - then delete the leading and trailing square bracket the web wraps the data within.
Assuming this code does as you’ve described, what a fantastic hack to get around the current absence of this feature. Impressive!
I would bet that my OVO colleagues would suggest a warning on using code snippets like this just in case they lead to unexpected outcomes. For example if you run this code in a PowerShell terminal, and you’re not sure of the code yourself, are you exposing your machine, and any files or folders in it, to the result of the code being executed?
Potentially, yes. Which is why it shouldn’t be run as Admin - standard privileges are more than sufficient for this particular code.
It appears that this code is also written in such a way that it doesn’t attempt to access anything other than stdin and spits out a CSV file. But a warning about being cautious nonetheless is appropriate.
Yeah what he said - the script is entirely self contained - which is why you need to paste the data into it and save before execution. Once its finished processing it will attempt to write to disk, so you need to be pointing to a directory you can write to as yourself (as opposed to admin which can write anywhere. But Blastoise186 is right, you shouldn’t run anything as admin.
I’ve re-written the script to cope with missing data and a KW conversion factor as well as calculating the actual daily usage as opposed to reporting what the meter says each day and I split the data in a different way which makes the code parse the data in logical structures as opposed to needing to parse each string and figure out what it is.
I’ll post it up in a bit.
# Just CTRL + A and then CRTL + C the whole page and paste it between the $Gas = ‘’ and $Electric = '' apostrophes with no spaces - then delete the leading and trailing square bracket the web wraps the data within.