Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Soler_1
Frequent Visitor

Running total KPI

Hello 

 

I'm creating a report with running totals from this year. I use a relative date-slicer. 

I created two measures until date. If I put them in a KPI, it will display infinity at the target. 

Note: omzet = revenue 

 

Omzet PY.**bleep** = if(LASTDATE(Datum[Datum]) > TODAY(), BLANK(), CALCULATE([Omzet PY],FILTER(ALLSELECTED(Datum),Datum[Datum] <= MAX(Datum[Datum]))))
 
Omzet **bleep** = IF(LASTDATE(Datum[Datum]) > TODAY(), BLANK(), CALCULATE(SUM(Waardepost[Omzet]),FILTER(ALLSELECTED(Datum),Datum[Datum] <= MAX(Datum[Datum]))))

 KPI.png

 

 

I already tried it on a different way. Just with creating new measures to calculate my own %. Just one problem, I just want the number of the last date (today). I tried a couple of techniques but none of them worked. 

 

tabel.png

 

 

So my two questions: 

 

1) Can i create a KPI with RT ?

2) Is it possible to just selected the lastest data from the table. 

 

 

Kind regard

Soler

1 ACCEPTED SOLUTION

Hi @Soler_1 ,

 

If so you could use TODAY() function to get today's date and use EDATE() or DATEADD() function to get next year today's date.

Measure = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]=TODAY()))

Measure 2 = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]=EDATE(TODAY(),+12)))

10.PNG

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

4 REPLIES 4
v-jayw-msft
Community Support
Community Support

Hi @Soler_1 ,

 

I haven't heard that we can't create a KPI with RT. And when you saying " just select the latest data from the table" are you meaning default select latest date in the slicer?

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

If today is 01/02, I want the see the difference between RT 01/03/2021 and 01/03/2022.  When I load tomorrow new data. I want the see the difference between RT 02/03/2021 and 02/03/2022. 

 

 

Hi @Soler_1 ,

 

If so you could use TODAY() function to get today's date and use EDATE() or DATEADD() function to get next year today's date.

Measure = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]=TODAY()))

Measure 2 = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]=EDATE(TODAY(),+12)))

10.PNG

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Thanks for the solution! 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.