Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I'd like to make a sales sum on all the stores except number 100
Total Sales = Calculate(Sum(Revenue);All(Localization[StoreID]) <-- How to add to this a condition that excludes shop 100
Solved! Go to Solution.
Try
Total Sales = Calculate(Sum(Revenue);Localization[StoreID]<>100)
Total Sales = Calculate(Sum(Revenue);filter(All(Localization),Localization[StoreID]<>100))
if you need more help make me @
Appreciate your Kudos.
Try
Total Sales = Calculate(Sum(Revenue);Localization[StoreID]<>100)
Total Sales = Calculate(Sum(Revenue);filter(All(Localization),Localization[StoreID]<>100))
if you need more help make me @
Appreciate your Kudos.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.