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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
powerBIpeon
Helper II
Helper II

Allocation based off different table

Hi All,

 

I'm trying to allocate out a specfic dollar amount based on a table I have built. I have a allocation table that will include percentages. As a order comes in I want it to reference that table and allocate it to the specfic modules. Here's is how the current relationship is built.

 

Relationship 

https://www.dropbox.com/s/sgnsqfkj5423z7a/Capture.PNG?dl=0

 

Results Table

 

Item CodeModule 1Module 2Module 3Module 4
1234250  250
567875757575
9101175757575
121314250  250

 

Link to PowerBI file

https://www.dropbox.com/s/zknbjjdevnqneoz/allocation%20example.pbix?dl=0

 

I did create a calculated column, but its limited to only calculating 1 field. I'm working with a large data set so that is not ideal

 

Thanks in advance!

1 ACCEPTED SOLUTION
v-eachen-msft
Community Support
Community Support

Hi @powerBIpeon ,

 

You could use RELATED() function to do it like the following DAX:

Column 1 =
VAR a =
    RELATED ( 'allocation table'[Module 1] ) * Quotes[Price]
RETURN
    SWITCH ( TRUE (), a = 0, BLANK (), a )

Here is my test file for your reference.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

3 REPLIES 3
v-eachen-msft
Community Support
Community Support

Hi @powerBIpeon ,

 

You could use RELATED() function to do it like the following DAX:

Column 1 =
VAR a =
    RELATED ( 'allocation table'[Module 1] ) * Quotes[Price]
RETURN
    SWITCH ( TRUE (), a = 0, BLANK (), a )

Here is my test file for your reference.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.
sturlaws
Resident Rockstar
Resident Rockstar

Hi @powerBIpeon ,

 

what is you desired outcome? A table in your model with the item code and the price allocated to the modules? Or do you want to visualize it in a table vizualization?

 

Cheers,
Sturla

@sturlaws 

 

table with item code and the price allocated to the modules. 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.