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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Good day experts.
I want to create a metric in BI that counts purchase orders greater than X value, let's say $500,000.
The table goes something like this:
PURCHASE ORDER | ARTICLE | MATTER |
1 | A | 108.000,00 |
1 | B | 270.000,00 |
2 | C | 395.000,00 |
2 | D | 132.000,00 |
3 | A | 588.000,00 |
3 | B | 108.000,00 |
4 | C | 390.000,00 |
5 | D | 390.000,00 |
The expected result in this case is 2, corresponding to purchase orders number 2 and 3.
Thanks a lot!
Solved! Go to Solution.
measure =
var _purchase = calculate(Sum(Table[MATTER]), filter(allselected(Table), Table[PURCHASE ORDER] = max(Table[PURCHASE ORDER]))
return
sumx(filter(values(Table[PURCHASE ORDER]), _purchase >50000), calculate(Sum(Table[MATTER])) )
Excellent! Worked.
Thank you very much.
measure =
var _purchase = calculate(Sum(Table[MATTER]), filter(allselected(Table), Table[PURCHASE ORDER] = max(Table[PURCHASE ORDER]))
return
sumx(filter(values(Table[PURCHASE ORDER]), _purchase >50000), calculate(Sum(Table[MATTER])) )