Dataset to Pivot table (time series dataset)

grijken

New Member
Joined
Apr 19, 2024
Messages
1
Office Version
  1. 2021
Platform
  1. Windows
Hi Everyone, I have ran into problem during my graduation internship. I need to study the impact of occupancy data (data found below) on energy forecasts. The problem is that the data they provided me with is formatted in a very unusual way. I would like to create a pivot time table from 2020-01-01 01:00 updating every hour until 2020-12-31 23:00. Can someone explain the best way to go about this? I don't mind using Python or another programming language to do this. ("personen"=occupants and bezoekers can be deleted)

Thank you!

1713518100814.png
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Can you ask your instructors to provide the data in a flat file?

If that can't happen. I suggest using power query to unpivot your data

You've posted an image which gives a view of your scenario, but the forum must manually recreate your data. Can you please post a table or use the xl2bb add in (preferred, link to the add in is below).

Thanks, and welcome to the forum.
 
Upvote 0
Here is a power query statement based on your image.
Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type any}, {"Category", type text}, {"7:00", Int64.Type}, {"9:00", Int64.Type}, {"10:00", Int64.Type}, {"11:00", Int64.Type}, {"13:00", Int64.Type}, {"14:00", Int64.Type}, {"15:00", Int64.Type}, {"16:00", Int64.Type}, {"17:00", Int64.Type}, {"18:00", Int64.Type}, {"18:30", Int64.Type}, {"19:00", Int64.Type}, {"21:00", Int64.Type}, {"23:00", Int64.Type}}),
    #"Filtered Rows" = Table.SelectRows(#"Changed Type", each ([Date] <> null and [Date] <> "Week 2" and [Date] <> "Week 3" and [Date] <> "Week Total" and [Date] <> "Week-Gemiddelde")),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Filtered Rows", {"Date", "Category"}, "Attribute", "Value"),
    #"Renamed Columns" = Table.RenameColumns(#"Unpivoted Other Columns",{{"Attribute", "Hour"}, {"Value", "Count"}}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Renamed Columns",{{"Hour", type time}, {"Date", type date}}),
    #"Reordered Columns" = Table.ReorderColumns(#"Changed Type1",{"Date", "Hour", "Category", "Count"})
in
    #"Reordered Columns"
 
Upvote 0

Forum statistics

Threads
1,215,329
Messages
6,124,301
Members
449,149
Latest member
mwdbActuary

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