The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |