Forum Discussion
Kolumam
8 years agoPost Prodigy
Calculating the difference in energy readings using difference in dates
Hi All,
I have 3 columns. I wanna find the difference between the last and the first readings of "total_energy_generated_till" based on the timestamp of a day and based on the inverter ID. How do I acheive this ?
7 Replies
- Phil_SeamarkMicrosoft Employee
Hi Kolumam
This calculated table gets pretty close. Just change where I have 'Table'
New Table = SUMMARIZE( ADDCOLUMNS( 'Table', "Date",DATEVALUE(FORMAT('Table'[Tstamp],"YYYY-MM-DD")) ), [Date], [InverterID], "myMin",MIN('Table'[total_energy_generated_til]), "myMax",MAX('Table'[total_energy_generated_til]), "Diff",MAX('Table'[total_energy_generated_til]) - MIN('Table'[total_energy_generated_til]) )- KolumamPost Prodigy
Hi Phil_Seamark
I am using DirectQuery and I am not able to create a new table. Any suggestions please ?
- Phil_SeamarkMicrosoft Employee
What is your direct query datasource? Is it an SQL datasource?
- Ashish_MathurSuper User
Hi,
Share the PBI file. Please also show the expected result there.