Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
))
Solved! Go to Solution.
@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()) )
@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()) )
User | Count |
---|---|
84 | |
80 | |
70 | |
47 | |
43 |
User | Count |
---|---|
108 | |
54 | |
50 | |
40 | |
40 |