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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
kleysonr
Frequent Visitor

Max value of a datetime per category

Hi,

 

I have the following table:

 

sample.png

 

I need to create an individual measure for each category Table[Name] getting the Table[Value] for the Lastdate of the category.

 

My last try was the below, but no success:

 

Last Value of A = 
  var _name = "A"
  var _lastdate = LASTDATE(MyTable[Datetime])
  var _maxvalue = CALCULATE(
    MAX(MyTable[Value]),
    FILTER(
        all(MyTable),
        MyTable[Datetime] = _lastdate && MyTable[Name] = _name
    )
)
return _maxvalue
 

 

This table is supposed to be big because it's receiving streaming data and keeping the history.

 

How to create a measure that give me the last value of A considering the performance for calculation on a streaming table ?

 

Best Regards.
Kleyson Rios.

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @kleysonr 

if you are slicing by name in your visual then delete the name filter part

Last Value of A =
VAR _name = "A"
VAR _lastRecod =
TOPN ( 1, FILTER ( MyTable, MyTable[Name] = _name ), MyTable[Datetime] )
VAR _maxvalue =
SUMX ( _lastRecod, MyTable[Value] )
RETURN
_maxvalue

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @kleysonr 

if you are slicing by name in your visual then delete the name filter part

Last Value of A =
VAR _name = "A"
VAR _lastRecod =
TOPN ( 1, FILTER ( MyTable, MyTable[Name] = _name ), MyTable[Datetime] )
VAR _maxvalue =
SUMX ( _lastRecod, MyTable[Value] )
RETURN
_maxvalue

Thanks.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.