Electricity usage

GLOpro

Board Regular
Joined
Jul 30, 2005
Messages
117
Hi,

I have a data file CSV from my energy provider.

The data is in 30min increments and reports on 3 meters (General, Solar and Controlled Load)

How can I represent that in Excel graphically?

Thanks
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Have you considered creating a Pivot table and associated chart ?
 
Last edited:
Upvote 0
that was my first thought but i cant figure out how to represent the 30min time intervals.
 
Upvote 0
Can you post a sample of your data and it's layout ?
 
Last edited:
Upvote 0
Surely you don't want 3 years of data in 30 min intervals....there is 105000 lines of data ??
A couple of things to consider
1. Can all the zero profile reads be removed / filtered out ?
2. Controlled usage seems to be 00:00 to 4am
3. General is anytime
4. Solar is 7:30 to 3pm....approx

Can you report on these seperately ??
and finally...why bother with 30 min increments.....seems like spending $10 to save 5 cents...but I'm sure you have good reasons...:LOL:
 
Upvote 0
Surely you don't want 3 years of data in 30 min intervals....there is 105000 lines of data ??
A couple of things to consider
1. Can all the zero profile reads be removed / filtered out ?
2. Controlled usage seems to be 00:00 to 4am
3. General is anytime
4. Solar is 7:30 to 3pm....approx

Can you report on these seperately ??
and finally...why bother with 30 min increments.....seems like spending $10 to save 5 cents...but I'm sure you have good reasons...:LOL:


That’s 24months of data, but I don’t need all of it.

I just want to get the data into excel that could display this in a similar fashion (but horizontally, rather than vertically in the app)

[trying to figure out how to attach an image here]
 
Upvote 0
Deleting the zero value rows will reduce your data set down to 48193 rows, takes a couple of minutes to run

Code:
Sub MM1()
Dim lr As Long, r As Long
Application.ScreenUpdating = False
lr = Cells(Rows.Count, "I").End(xlUp).Row
 For r = lr To 2 Step -1
    If Cells(r, "I").Value = 0 Then Rows(r).Delete
Next r
Application.ScreenUpdating = True
End Sub

Anything else we can eliminate ??
 
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,775
Members
448,991
Latest member
Hanakoro

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top