Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

Measure greater than X value

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 ORDERARTICLEMATTER
1A 108.000,00
1B 270.000,00
2C 395.000,00
2D 132.000,00
3A 588.000,00
3B 108.000,00
4C 390.000,00
5D 390.000,00

The expected result in this case is 2, corresponding to purchase orders number 2 and 3.

Thanks a lot!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Syndicate_Admin ,

 

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])) )

View solution in original post

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

Excellent! Worked.

Thank you very much.

amitchandak
Super User
Super User

@Syndicate_Admin ,

 

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])) )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.