Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
10 | |
6 |