Forum Discussion
J_R_Cribb
9 years agoHelper I
Remove Measure at Drill Down level?
Hello All, I have a matrixwhereby I am showing Revenue & Forecast Revenue which can be filtered by month. I would like to be able to drill down from Account Manager, to Customer, to Product,...
- 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
v-ljerr-msft
9 years agoMicrosoft Employee
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_Cribb
9 years agoHelper I
Brilliant! Thank you v-ljerr-msft !!