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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
CloudMonkey
Post Prodigy
Post Prodigy

distinctcount only those that have an aggregate sum of at least 15

Hello,

 

The formula below find the number of shops that have sales in the latest 3 months. Please could you tell me how to only count shops that have at least 15 sales (sum of column 'Managagement Accounts Volume'[Volume]) in the latest 3 months?

 

Thank you for your help

 

Number of Large (15+ sales in latest 3 months) branches (active) = 
VAR FirstDayOfThisMonth = min('Calendar (Months)'[First Date Of Month])
VAR FirstDayOfNextMonth = edate(FirstDayOfThisMonth,1)
VAR FirstDayOfTwoMonthsAgo = edate(FirstDayOfThisMonth,-2)
RETURN
calculate(DISTINCTCOUNT('Management Accounts Volume'[Branch Number]),filter('Management Accounts Volume',
    related('Branch List (HARDCODED TO FY21) (excludes 9* accounts)'[Closed Date]) >= FirstDayOfNextMonth &&
    related('Branch List (HARDCODED TO FY21) (excludes 9* accounts)'[Acquired Date]) < FirstDayOfTwoMonthsAgo &&
    'Management Accounts Volume'[Volume Date] >= FirstDayOfTwoMonthsAgo &&
    'Management Accounts Volume'[Volume Date] < FirstDayOfNextMonth
))

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@CloudMonkey , your measure is not very clear, but you need a measure like below assuming sales is your measure

 

countx(values(Table[Shop]), If([sales] >15, [Shop], blank()) )

 

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
CloudMonkey
Post Prodigy
Post Prodigy

Brilliant thank you @amitchandak 🙂

amitchandak
Super User
Super User

@CloudMonkey , your measure is not very clear, but you need a measure like below assuming sales is your measure

 

countx(values(Table[Shop]), If([sales] >15, [Shop], blank()) )

 

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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.