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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
atifshikoh1
Frequent Visitor

Support Required to distribute the values based on other table and then sum up

Hi All,

 

I am new to DAX and needed your expertise to solve one of the issues I am stuck in. I need to distribute the based on their consumption and new releases has to be divided for blank values... I am attaching the sample ,how it looks like.

PowerBI_DAX.jpg

 

 

In the above my recharges tables has 7 denominations, so for that particular period i need to take the proportion for only B,C,D,E,F denominations,i above ex, it comes to be 0.1,0.15,0.2,0.25,0.3 respectively. With that proportion, I have to divide the ABC values in the releases table. Releases table also has B,C,D,E,F denominations. After dividing the values of ABC in B,C,D,E,F proportions we need to add with the values exists in the releases table. Hence the final figure which I am expecting for B,C,D,E,F denominations are 13500,20100,26700,33000 and 39900 respectively. 

 

Any help would be much appreciated.

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

Hi @atifshikoh1 

Does my reply solve your problem?

If not, please let me know.

 

Best Regards

Maggie

 

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

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @atifshikoh1 

Does my reply solve your problem?

If not, please let me know.

 

Best Regards

Maggie

 

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

v-juanli-msft
Community Support
Community Support

Hi @atifshikoh1

1. create columns in two tables

link column1 in recharges tables, link column2 in releases table

link column1 =
CONCATENATE ( 'recharges tables'[denominations], 'recharges tables'[weekyear] )

link column2 =
CONCATENATE ( 'releases table'[DENO], 'releases table'[weekyear] )

2. 

create relationship between two tables based on link columns

5.png

 

3.

create a column in releases table

abc =
CALCULATE (
    MAX ( 'releases table'[VALUE] ),
    ALLEXCEPT ( 'releases table', 'releases table'[weekyear] )
)

6.png

 

4. create measures

Measure =
SUM ( 'recharges tables'[values] )
    / CALCULATE (
        SUM ( 'recharges tables'[values] ),
        FILTER (
            ALLSELECTED ( 'recharges tables' ),
            'recharges tables'[weekyear] = MAX ( 'recharges tables'[weekyear] )
        )
    )


Measure 2 = [Measure]*MAX('releases table'[abc])

Measure 3 = [Measure 2]+MAX('releases table'[VALUE])

7.png

 

Best Regards

Maggie

 

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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.