Forum Discussion
RSOSA
2 years agoNew Member
Difference of value between dates
Hello Everyone, I am a new user of PBI, and now I am struggling with a formula, hope someone can guide me on how to do it, Basically what I want to do is calculate de difference or growth be...
- 2 years ago
Hello Rsosa,
If you are having only days insted of full date in WKN column you can try below measure, only replace "TABLENAME" with Your table name%diff=var todaysdate = MAX(TABLENAME[WKN])var previousdaydate= todaysdate -1var todayscount =CALCULATE(SUM(TABLENAME[Repeatecaller]),TABLENAME[WKN]=todaysdate )var previousdaycount=CALCULATE(SUM(TABLENAME[Repeatecaller]),TABLENAME[WKN]=previousdaydate)returnIF(previousdaycount=BLANK(),BLANK(),todayscount -previousdaycount)
Use a table or matrix visual - 2 years ago
If you have full date you can replace it with WKN column.
If previous solution works for you please mark as solution.
kiran_jadhav
2 years agoFrequent Visitor
Can you share snap of your data model, Or dummy data if possible to share?