Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 status of outstanding. I want to show the first PO number only, based on earliest date due, per item number. Is that possible?
So eg. If one item is on 2 different PO's, one due tomorrow and one next week, I would want the report to only give the PO number of the order due tomorrow, not next week
Thanks!
Solved! Go to Solution.
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
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
Yes, but difficult to be specific without sample data. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
That being said, generally you are going to use VAR to create a temp table of your PO's, use MINX to identify the minimum date in that table and then use MAXX or other aggregation against FILTER of your temp table where the date would equal the value from your MINX.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 102 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |