Forum Discussion
Remove Measure at Drill Down level?
- 9 years ago
Hi J_R_Cribb,
Based on my test, you should be able to use the formula below to create a new measure to calculate Budget for Customer and Product accordingly, and show the measure instead of the Budget column on the Matrix in your scenario.
Measure for Budget = IF ( HASONEVALUE ( 'Product'[Product] ), 0, SUM ( Budget[Budget] ) )
Here is the modified pbix file for your reference. :smileyhappy:
Regards
Hi v-ljerr-msft
Please see below link to simple report.
https://1drv.ms/u/s!At3Y510MQDVqgjR9IUXahSceAsrV
Thank you
Hi J_R_Cribb,
Based on my test, you should be able to use the formula below to create a new measure to calculate Budget for Customer and Product accordingly, and show the measure instead of the Budget column on the Matrix in your scenario.
Measure for Budget = IF ( HASONEVALUE ( 'Product'[Product] ), 0, SUM ( Budget[Budget] ) )
Here is the modified pbix file for your reference. :smileyhappy:
Regards
- J_R_Cribb9 years agoHelper I
Brilliant! Thank you v-ljerr-msft !!