Forum Discussion
NBOnecall
6 years agoHelper V
Calculated Column Help with Most Recent Date
Hi, I think I am just brain dead today, but I think I am overlooking something super easy, but I have teh following table that I want to bring back into another table that just has an item number...
- 6 years ago
I ended up using this formula.
Location A Qty= CALCULATE(SUM(table1[QTY]),FILTER(TAble1, table2[Location] = "A"),filter(table1', table1[item] = table2[name]),LASTDATE(table1[Date]))
amitchandak
6 years agoSuper User
Try
Measure =LASTNONBLANKVALUE(table[Date], sum(Table[Qty]))
Put this in a matrix in row, location in column
- NBOnecall6 years agoHelper V
Due to other wanted results, I need it as a calculated column on the table, unforuntely not a measure.