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.
Hello,
Please assist me with this DAX measure I'm trying to calculate the sum of inventory based on the countries for a selected user.
I have attached my pbix file with the measure called "TotalInventoryProcessedForSelectedUserCountries"
I'm trying to get the total for all users which had the same countries with inventory as Ann where from 25 April to 1 May 2020 Ann had inventory in 6 countries (Brazil,Canada,Ireland,Mexico,US and Venezuela). I need the total inventory for all users who had inventory in those same 6 countries. My measure now returns all users and all countries but I need only the selected user's countries.
PBIX file link - https://www.dropbox.com/s/5rxhb0ajieqwzyj/TableFilter.pbix?dl=0
My DAX code :=
Solved! Go to Solution.
Hey @Anonymous ,
I think I found an easier way.
First I get the countries for the current user and then I just use that list as a filter for calculate.
Check the following approach:
TotInventory =
-- Get all countries for the current user
VAR vCountries =
CALCULATETABLE(
VALUES( data[Country] ),
ALLEXCEPT(
data,
data[User Name]
)
)
RETURN
-- return the [SumOfInventoryProcessed] and we use
-- as only filter the countries from the first step
CALCULATE(
[SumOfInventoryProcessed],
vCountries,
ALL( data )
)
Thank you it worked 🙂
Hey @Anonymous ,
I think I found an easier way.
First I get the countries for the current user and then I just use that list as a filter for calculate.
Check the following approach:
TotInventory =
-- Get all countries for the current user
VAR vCountries =
CALCULATETABLE(
VALUES( data[Country] ),
ALLEXCEPT(
data,
data[User Name]
)
)
RETURN
-- return the [SumOfInventoryProcessed] and we use
-- as only filter the countries from the first step
CALCULATE(
[SumOfInventoryProcessed],
vCountries,
ALL( data )
)
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.
User | Count |
---|---|
22 | |
12 | |
10 | |
9 | |
8 |
User | Count |
---|---|
15 | |
15 | |
15 | |
12 | |
10 |