Forum Discussion

Alirezam's avatar
Alirezam
Icon for Helper V rankHelper V
7 years ago
Solved

aggregation of rows

Hi dudes,   I have tons of data in half-hour format and want to aggregate them to hourly format adding two half-hour data together for each hour. The excel sample is attached. Any idea how to do it...
  • jdbuchanan71's avatar
    jdbuchanan71
    7 years ago

    Once you have the correct time on each row you just need a measure 

    Sum = SUM ( table[kWh] )

    then you pull the Year, Month, Day and time from the table and add in the measure.