Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
anthony56
Frequent Visitor

DAX formula help with ALL or ALLEXCEPT

I'm somewhat new to complex DAX formulas, and would like some guidance on filter contexts. Specifically, we have some data where the values are associated with User 1, but the amounts need to be split between User 1 and User 2. So, for example, in the data below, while Apple and Orange are associated to user Mike, and Pear is associated to Julie, I need some way to "allocate" half of Orange to Mike and half to Julie.

 

UserGroupAmount
MikeApple5
MikeOrange8
JuliePear6

 

Thus, by "allocating" half to each, the total amounts would be: Mike = 9 (5 Apple + 4 half Orange), and Julie = 10 (6 Pear + 4 half Orange).

UserTotal
Mike9
Julie10

 

Each time I try to create a visualization, the data is grouped by Mike and Julie, and I can't figure out how to get the Orange to be partially "allocated" to Julie. I've tried using ALL and ALLEXCEPT to remove the filter context in my measure, but I can't figure out how to make this work. Thanks for any guidance you can offer.

1 ACCEPTED SOLUTION
anthony56
Frequent Visitor

To follow up, here is how I solved this - not sure if this is correct, but it worked, so let me know if anyone suggests a better approach.

 

I created a new table with a "factor" to apply to the Orange value, where Mike has -0.5 and Julie has +0.5, like this:

New table: Factor = DISTINCT( VALUES( UserData[User] ) )

New column: OrangeFactor = SWITCH( [User], "Mike", 0.5, "Julie", -0.5)

This produced a new table that looked like this:

Mike, -0.5

Julie, 0.5

 

I then created a relationship between my original UserData table and this new Factor table, joined on the User column.

 

I then created a new Measure on the original UserData table that calculated the "Orange adjustment", like this:

Orange Adjustment = SUM(Factor[OrangeFactor]) * CALCULATE(SUMX(FILTER(ALL(UserData), [Group]="Orange"), [Amount]))

This essentially takes the total of all data where Group="Orange" and multiplies it by the Factor for the User, which results in -4 for Mike, and +4 for Julie.

 

I then created a new Measure that is the Adjusted Amount, which takes the sum of Amount, and adds the Orange adjustment, like this:

Adj Amount = SUM(UserData[Amount]) + [Orange Adjustment] 

 

This produces the following results:

PowerBI-1.png

 

Let me know if there is a cleaner or better way to do this?

View solution in original post

2 REPLIES 2
anthony56
Frequent Visitor

To follow up, here is how I solved this - not sure if this is correct, but it worked, so let me know if anyone suggests a better approach.

 

I created a new table with a "factor" to apply to the Orange value, where Mike has -0.5 and Julie has +0.5, like this:

New table: Factor = DISTINCT( VALUES( UserData[User] ) )

New column: OrangeFactor = SWITCH( [User], "Mike", 0.5, "Julie", -0.5)

This produced a new table that looked like this:

Mike, -0.5

Julie, 0.5

 

I then created a relationship between my original UserData table and this new Factor table, joined on the User column.

 

I then created a new Measure on the original UserData table that calculated the "Orange adjustment", like this:

Orange Adjustment = SUM(Factor[OrangeFactor]) * CALCULATE(SUMX(FILTER(ALL(UserData), [Group]="Orange"), [Amount]))

This essentially takes the total of all data where Group="Orange" and multiplies it by the Factor for the User, which results in -4 for Mike, and +4 for Julie.

 

I then created a new Measure that is the Adjusted Amount, which takes the sum of Amount, and adds the Orange adjustment, like this:

Adj Amount = SUM(UserData[Amount]) + [Orange Adjustment] 

 

This produces the following results:

PowerBI-1.png

 

Let me know if there is a cleaner or better way to do this?

v-shex-msft
Community Support
Community Support

HI @anthony56,

 

I'd like to suggest you refer to below blogs about all and allexcept functions:

ALL, ALLEXCEPT and VALUES in DAX

Managing “all” functions in DAX: ALL, ALLSELECTED, ALLNOBLANKROW, ALLEXCEPT

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.