Hi
I am trying to show the latest Cost column value based on the current record ID and the maxrow updated column
I have tried to use this but get errors
ANY(SELECT(ComponentCost[Cost],([Component] = [_THISROW].[ComponentsID], (MAXROW(ComponentCost, Updated))))
What am I missing here
Thanks
Hello there @21agdgcf
Please share the table structure from both the ComponentCost table and the table where this expression is placed currently.
Wie bekomme ich einen Spaltenwert nur aus der letzten Zeile dieses Dings?
LOOKUP(
MAX(
SELECT(
My Table[_ROWNUMBER],
([_THISROW].[Thing] = [Thing])
)
),
"My Table",
"_ROWNUMBER",
"Wanted Column"
)
Ersetzen Sie durch den Namen der Tabelle, aus der der Spaltenwert stammen soll. mit dem Namen der Spalte, die einen Wert enthält, der das gewünschte Objekt identifiziert (z. B. ); und mit dem Namen der Spalte, deren Wert Sie wünschen.
1 Like
Hi Tommy
Thanks didn’t thing to use a lookup as simpler solution
Thanks
Didn’t think to use a lookup, a much simpler solution