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, I'd like help with a filtered calculation. I'm looking to sum the net sales but filtering out the other countries.
Any idea as to the example dax?
Hi, @Jameswh91
Can you provide some sample data? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Measure Name=
var _Countires= SelectedValue('table'[countriecolumn])
var _OtherFilterSlicers= SelectedValue('table'[slicer])
Return
Calculated(Sum(Sales),filter('table', [countriescolumn]=_Countires && [othercolumns]=_OtherFilterSlicers)