Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
Hi,
My data is as follows.
I have two Measures:
Lowest Proposal = min(Proposal[Vendor Bid])
&
Proposal Rank = if(ISBLANK([Lowest Proposal])
, blank ()
, rankx(
filter(ALL(Proposal[Vendor ID]), not (ISBLANK([Lowest Proposal])))
, [Lowest Proposal]
,
,1
)
)
Solved! Go to Solution.
hi, @amtbew
try below measure
rank =
var a = SUMMARIZE(
'Table',
'Table'[product id],
'Table'[lowest proposal],
'Table'[vender id],
"rank",RANK(
DENSE,
ALL('Table'),
ORDERBY('Table'[lowest proposal],ASC),,
PARTITIONBY('Table'[product id])
)
)
return
COUNTX( FILTER(a, [rank]=1),'Table'[vender id])
hi, @amtbew
try below
Measure 3 =
var a = ADDCOLUMNS( SUMMARIZE(Proposal,Proposal[Product ID],Proposal[Vendor ID]),"low",[Lowest Proposal],"rank",[Proposal Rank])
return
COUNTX(FILTER(a,[Proposal Rank]=1),Proposal[Vendor ID])
or this try
Both ones you posted seemed to work. Thanks
hi, @amtbew
try below measure
rank =
var a = SUMMARIZE(
'Table',
'Table'[product id],
'Table'[lowest proposal],
'Table'[vender id],
"rank",RANK(
DENSE,
ALL('Table'),
ORDERBY('Table'[lowest proposal],ASC),,
PARTITIONBY('Table'[product id])
)
)
return
COUNTX( FILTER(a, [rank]=1),'Table'[vender id])
Thanks @Dangar332 howver it's returning the following error
The column 'lowest proposal' specified in the 'SUMMARIZE' function was not found in the input table.
Perhaps because that is a measure not a column?
Here's a pbix
Thanks
hi, @amtbew
try below
Measure 3 =
var a = ADDCOLUMNS( SUMMARIZE(Proposal,Proposal[Product ID],Proposal[Vendor ID]),"low",[Lowest Proposal],"rank",[Proposal Rank])
return
COUNTX(FILTER(a,[Proposal Rank]=1),Proposal[Vendor ID])
This one worked. Thank you
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 63 | |
| 48 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 119 | |
| 117 | |
| 38 | |
| 36 | |
| 27 |