Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
Thank you
Hi @jason_ocp90 ,
Based on your description, it appears that your current DAX formula is filtering out any negative net savings amounts, which is why you are not seeing amounts for component code 15116. To resolve this issue, you may want to consider adjusting your method to ensure that you can view all net savings amounts at the component level while still applying your filters at the material level.
Here is a modified Dax that may help:
Net Savings All Levels =
CALCULATE (
[Net Savings USD_],
FILTER (
ALL ( 'Raw Material Finance Report'[Material.Material Level 01.Key] ),
'Raw Material Finance Report'[Material.Material Level 01.Key]
IN VALUES ( 'Raw Material Finance Report'[Material.Material Level 01.Key] )
)
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |