Forum Discussion
Grevatious
6 years agoFrequent Visitor
Get the last delivery date
Hello everyone I need help! I have two tables. The first one has all the description of the order and the customer information and the other shows all the information related to the delivery of e...
amitchandak
Super User
6 years agoUse this measure in you table to display the date
Measure =
VAR __id = MAX( 'Table'[Orders] )
VAR __date = CALCULATE ( MAX( 'Table'[Delivery date] ), ALLSELECTED ( 'Table' ), 'Table'[Orders] = __id )
RETURN CALCULATE ( MAx ( 'Table'[Delivery date] ), VALUES ( 'Table'[Orders] ), 'Table'[Orders] = __id, 'Table'[Delivery date] = __date )