Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi I have a measure that calculates TotalProducts and I would like to now calculate Average([TotalProducts]) based on Region column. Can someone please help on how to get this. Please see below measure calculation
Solved! Go to Solution.
@Anonymous
Should be the same way. I am not sure if below coding can meet your requirement. You can try this.
average = Divide(calculate(Regioncount,all(table)),Regioncount)
Proud to be a Super User!
@Anonymous,
Based on your description, formula TotalProducts is the formula below you have posted, right?
TotalProducts = CALCULATE ( CALCULATE ( DISTINCTCOUNT ( 'Product'[ProductNumber] ), FILTER ( 'Product', ISBLANK ( 'Product'[Modified Date] ) = FALSE () ), USERELATIONSHIP ( DateTable[Date], 'Product'[Created Date] ) ) + 0 )
If the formula is measure, change it into calculate column and try again.
Regards,
Jimmy Tao
Thanks for your reply. I would like try using measures rather than custom column. This is what I need.
Contact_address1_city | RegionCount | Average | Calc |
NULL | 5535 | 2.312195 | =12798/5535 |
London | 1252 | 10.22204 | =12798/1252 |
HIGH WYCOMBE | 554 | 23.10108 | =12798/554 |
GLASGOW | 619 | 20.67528 | |
NOTTINGHAM | 611 | 20.94599 | |
Bristol | 528 | 24.23864 | |
BIRMINGHAM | 515 | 24.85049 | |
KING | 249 | 51.39759 | |
sunderland | 460 | 27.82174 | |
NEWCASTLE UPON TYNE | 457 | 28.00438 | |
LEEDS | 437 | 29.28604 | |
WREXHAM | 430 | 29.76279 | |
SHEFFIELD | 393 | 32.56489 | |
LIVERPOOL | 390 | 32.81538 | |
Manchester | 368 | 34.77717 | |
TotalProducts | 12798 |
@Anonymous
You can try below coding . Thanks
average = DIVIDE(sum(Table1[count]),CALCULATE(SUM(Table1[count]),ALL(Table1)))
Proud to be a Super User!
@Anonymous
Should be the same way. I am not sure if below coding can meet your requirement. You can try this.
average = Divide(calculate(Regioncount,all(table)),Regioncount)
Proud to be a Super User!
Thanks for your reply.
I have now got the calculation done at source level rather than tinkering in Power BI. So working fine now.
@Anonymous
Could you plese try to add a region count measure?
Regioncount= distinctcount ('Product'[Region])
Average= Divide (TotalProducts, Regioncount)
Hope this is helpful for you. Thanks
Proud to be a Super User!
Hi Thanks for your reply. I already tried but didn't get the desired result.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
103 | |
63 | |
45 | |
37 | |
35 |