Forum Discussion
Shalin
7 years agoFrequent Visitor
Show first value by date
I have a report showing products that are on purchase order, basically: Item, PO Number, Date due, Status. I have a page level filter on status so that it only shows Orders with the right statu...
- 7 years ago
Hi Shalin
You may create a measure and then drag it to visual level filter. Attached the sample file for your reference.
First = IF ( MAX ( 'Table'[Date due] ) = MINX ( FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Item] = MAX ( 'Table'[Item] ) ), 'Table'[Date due] ), 1 )Regards,
Cherie
v-cherch-msft
7 years agoMicrosoft Employee
Hi Shalin
You may create a measure and then drag it to visual level filter. Attached the sample file for your reference.
First =
IF (
MAX ( 'Table'[Date due] )
= MINX (
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Item] = MAX ( 'Table'[Item] ) ),
'Table'[Date due]
),
1
)
Regards,
Cherie