Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have the following table:
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.
Solved! Go to Solution.
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
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.
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |