Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
Hi all
I need a fix on the denominator of my calculated column in order to divide properly in function of the distinct count of monthrs for the combination BPP Code & Bottler.
The formula is:
Average =
CALCULATE(
SUM ( 'Sheet1'[Mix]),
FILTER ( 'Sheet1',
[[ BPP Code ]]] = EARLIER ( [[ BPP Code ]]] )
&& 'Sheet1'[[L1.2 - Bottler]]]
= EARLIER ( 'Sheet1'[[L1.2 - Bottler]]] )
&& 'Sheet1'[[ BU Ship From ]]]
= EARLIER( 'Sheet1'[[ BU Ship From ]]])
)
)
/
DISTINCTCOUNT('Sheet1'[[Month 445]]])
For example the BPP code "232031405" for Bottler "AB" has data for 7 months. However the current formula is dividing by 8.
Why 8? Because the total months for exisiting bottlers is 8:
However, "AB" has data for 7 months and bottler "FCR" just data for 4 months.
The correct way to do it would be to divide only by the distinct months for the combination bottler+code, as stated above.
How can I fix this?
Pbix
https://1drv.ms/u/s!ApgeWwGTKtFdhynS9xpgFReudUKP?e=BgBQlU
Thanks!
Solved! Go to Solution.
Hi @o59393 ,
Please try this:
Average =
VAR mix_ =
CALCULATE (
SUM ( 'Sheet1'[Mix] ),
FILTER (
'Sheet1',
[[ BPP Code ]]] = EARLIER ( [[ BPP Code ]]] )
&& 'Sheet1'[[L1.2 - Bottler]]] = EARLIER ( 'Sheet1'[[L1.2 - Bottler]]] )
&& 'Sheet1'[[ BU Ship From ]]] = EARLIER ( 'Sheet1'[[ BU Ship From ]]] )
)
)
VAR month_ =
CALCULATE (
DISTINCTCOUNT ( 'Sheet1'[[Month 445]]] ),
ALLEXCEPT ( Sheet1, Sheet1[[L1.2 - Bottler]]] )
)
RETURN
DIVIDE ( mix_, month_ )
@o59393 , Try like
Average =
divide(
CALCULATE(
SUM ( 'Sheet1'[Mix]),
FILTER ( 'Sheet1',
[ BPP Code ] = EARLIER ( [ BPP Code ] )
&& 'Sheet1'[[L1.2 - Bottler]]]
= EARLIER ( 'Sheet1'[L1.2 - Bottler] )
&& 'Sheet1'[ BU Ship From ]
= EARLIER( 'Sheet1'[ BU Ship From ])
)
)
,
DISTINCTCOUNT('Sheet1'[Month 445]))
or
Average =
CALCULATE(
divide(SUM ( 'Sheet1'[Mix]),
DISTINCTCOUNT('Sheet1'[Month 445])),
FILTER ( 'Sheet1',
[ BPP Code ] = EARLIER ( [ BPP Code ] )
&& 'Sheet1'[[L1.2 - Bottler]]]
= EARLIER ( 'Sheet1'[L1.2 - Bottler] )
&& 'Sheet1'[ BU Ship From ]
= EARLIER( 'Sheet1'[ BU Ship From ])
)
)
Hi @amitchandak
I used your second dax but got a different result to the expected which is in yellow:
The dax used was:
Average =
CALCULATE(
DIVIDE(
SUM ('Sheet1'[Mix]), DISTINCTCOUNT('Sheet1'[[Month 445]]])),
FILTER ( 'Sheet1',
[[ BPP Code ]]] = EARLIER ( [[ BPP Code ]]] )
&& 'Sheet1'[[L1.2 - Bottler]]]
= EARLIER ( 'Sheet1'[[L1.2 - Bottler]]] )
&& 'Sheet1'[[ BU Ship From ]]]
= EARLIER( 'Sheet1'[[ BU Ship From ]]])
)
)
The result:
For example OPL Zacapa is giving 2.05% in PBI but should be 0.88% as stated in the first image.
Thanks!
Here is the excel with the desired result in yellow
https://1drv.ms/x/s!ApgeWwGTKtFdhyju4mjDUCshNPDw?e=sF3zFd
Regards.
Hi @o59393 ,
Please try this:
Average =
VAR mix_ =
CALCULATE (
SUM ( 'Sheet1'[Mix] ),
FILTER (
'Sheet1',
[[ BPP Code ]]] = EARLIER ( [[ BPP Code ]]] )
&& 'Sheet1'[[L1.2 - Bottler]]] = EARLIER ( 'Sheet1'[[L1.2 - Bottler]]] )
&& 'Sheet1'[[ BU Ship From ]]] = EARLIER ( 'Sheet1'[[ BU Ship From ]]] )
)
)
VAR month_ =
CALCULATE (
DISTINCTCOUNT ( 'Sheet1'[[Month 445]]] ),
ALLEXCEPT ( Sheet1, Sheet1[[L1.2 - Bottler]]] )
)
RETURN
DIVIDE ( mix_, month_ )
Don't use EARLIER(). Use variables.
Move the DISTINCTCOUNT() inside the CALCULATE so that it is affected by the desired filters.
Hi @lbendlin
Don't know how to use variables instead of earlier. I did move the distinct count inside calculate but didnt give me the result desired:
Average =
CALCULATE(
DIVIDE(
SUM ('Sheet1'[Mix]), DISTINCTCOUNT('Sheet1'[[Month 445]]])),
FILTER ( 'Sheet1',
[[ BPP Code ]]] = EARLIER ( [[ BPP Code ]]] )
&& 'Sheet1'[[L1.2 - Bottler]]]
= EARLIER ( 'Sheet1'[[L1.2 - Bottler]]] )
&& 'Sheet1'[[ BU Ship From ]]]
= EARLIER( 'Sheet1'[[ BU Ship From ]]])
)
)
Thanks.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
85 | |
60 | |
45 | |
41 | |
39 |