March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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.
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.
Solved! Go to Solution.
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.
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.
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
3.
create a column in releases table
abc = CALCULATE ( MAX ( 'releases table'[VALUE] ), ALLEXCEPT ( 'releases table', 'releases table'[weekyear] ) )
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])
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
127 | |
85 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |