Forum Discussion
siva3012
Helper II
8 years agoTransform 15 Mins interval data into days ?
Hi Folks, I need to convert 15 mins interval into 1 day in a month . For example i have data as shown in the dig, I need to add all Kwh column from 1/1/2016 till 31/1/2016 ( which includes the ...
- 8 years ago
Should you opt for a Power Query solution, then transform your date column to the date of the end of the month (menu options: transform tab - Date - Month - End Of Month).
Group By these dates and choose operation "Sum" for your Kwh column.
Zubair_Muhammad
Community Champion
8 years agoHi siva3012
You can add a calculated Column to get Month End for each Date.
Then you can use Month End Date to do the Pivot Table
Month_End = EOMONTH ( TableName[Date], 0 )