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
Anonymous
Not applicable

Agg after recent date

Hi everyone,

 

I have this table below that is connect to a Calendar Table.

 

Date

IDColumn1Column2
31/07/2021A1601060
31/08/2021A2001170
30/09/2021A1751300
31/07/2021B10150
31/08/2021B12200
30/09/2021B14250

 

I want to calculate two metrics. They have to show the most recent result, that is defined by a slicer based on the Calendar Table. The metrics are:

  • Total amount of column1
  • Total amount of column2

I am struggling with getting the most recent result. Let's say that my slicer goes from 1/Jun/2021 to 15/Sep/2021 I want a card that shows me:

  • Col1_A + Col1_B = 200+12 = 212
  • Col2_A + Col2_B = 1170+200 = 1370

Any ideas on how to lock the most recent available value and then sum per ID? Thanks

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Anonymous 

Please try

Card1 =
SUMX (
VALUES ( 'Table'[ID] ),
MAXX ( CALCULATETABLE ( TOPN ( 1, 'Table', 'Table'[Date] ) ), 'Table'[Column1] )
)

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @Anonymous 

Please try

Card1 =
SUMX (
VALUES ( 'Table'[ID] ),
MAXX ( CALCULATETABLE ( TOPN ( 1, 'Table', 'Table'[Date] ) ), 'Table'[Column1] )
)

Anonymous
Not applicable

@tamerj1 thanks, it worked perfectly!

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.

Top Solution Authors