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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
afaro
Helper III
Helper III

How to calculate sum of visible rows in this situation?

ProductSalesCategoryCoefficient
P1100Food0.2
P250Leisure0.4
P3200Food0.2
P4300Leisure0.4
P5400Leisure0.4

 

I have a table like this and I create measures like these: 

EligibleCategory = IF(MAX(Table[Category]) IN {"Leisure"}, "YES", "NO")

EligibleSales = IF(0.5*SUM(Table[Sales]) >= 50, "YES", "NO")
Taxes = IF(EligibleSales = "YES" && EligibleCategory = "YES", MAX(Table[Coefficient]) * SUM(Table[Sales]), 0)

With these measures, I should get something like this: 

ProductSalesCategoryCoefficientEligibleCategoryEligibleSalesTaxes
P1100Food0.2NOYES0
P250Leisure0.4YESNO0
P3200Food0.2NOYES0
P4300Leisure0.4YESYES120
P5400Leisure0.4YESYES160
Total950  YESYES280


Most importantly, I want to know how to write my measures in a way that the total comes out to be 280 (sum of visible rows) instead of computing the measures on the aggregate result and giving the wrong total. 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Not sure why you would need measures for this, but here goes

 

lbendlin_0-1728395607120.png

 

 

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

Not sure why you would need measures for this, but here goes

 

lbendlin_0-1728395607120.png

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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