Forum Discussion
Data allocation within Power BI
- 6 years ago
Hi, hidenseek9
The sample data 2 link is not available. You may try to modify the calculated table and the measure as follows.
calculated table: ModifiedCategory = UNION( Category, DATATABLE("Store",STRING,"Segment",STRING,{{"Avocado","Fruits"}}), DATATABLE("Store",STRING,"Segment",STRING,{{"Orange","Vegetables"}}), DATATABLE("Store",STRING,"Segment",STRING,{{"Cucumber","Animals"}}) ) measure: Sales = SUMX ( 'ModifiedCategory', VAR s = [Store] VAR e = [Segment] RETURN SWITCH ( TRUE (), s = "Avocado" && e = "Vegetables", CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s ) * 0.9, s = "Avocado" && e = "Fruits", CALCULATE ( SUM ( 'Data'[Gross Sales] ),'Data'[Store] = s ) * 0.1, s = "Orange" && e = "Vegetables", CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s ) * 0.25, s = "Orange" && e = "Fruits", CALCULATE ( SUM ( 'Data'[Gross Sales] ),'Data'[Store] = s ) * 0.75, s = "Cucumber" && e = "Vegetables", CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s ) * 0.95, s = "Cucumber" && e = "Animals", CALCULATE ( SUM ( 'Data'[Gross Sales] ),'Data'[Store] = s ) * 0.05, CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s ) ) )Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, hidenseek9
The sample data 2 link is not available. You may try to modify the calculated table and the measure as follows.
calculated table:
ModifiedCategory =
UNION(
Category,
DATATABLE("Store",STRING,"Segment",STRING,{{"Avocado","Fruits"}}),
DATATABLE("Store",STRING,"Segment",STRING,{{"Orange","Vegetables"}}),
DATATABLE("Store",STRING,"Segment",STRING,{{"Cucumber","Animals"}})
)
measure:
Sales =
SUMX (
'ModifiedCategory',
VAR s = [Store]
VAR e = [Segment]
RETURN
SWITCH (
TRUE (),
s = "Avocado"
&& e = "Vegetables", CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s ) * 0.9,
s = "Avocado"
&& e = "Fruits", CALCULATE (
SUM ( 'Data'[Gross Sales] ),'Data'[Store] = s
) * 0.1,
s = "Orange"
&& e = "Vegetables", CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s ) * 0.25,
s = "Orange"
&& e = "Fruits", CALCULATE (
SUM ( 'Data'[Gross Sales] ),'Data'[Store] = s
) * 0.75,
s = "Cucumber"
&& e = "Vegetables", CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s ) * 0.95,
s = "Cucumber"
&& e = "Animals", CALCULATE (
SUM ( 'Data'[Gross Sales] ),'Data'[Store] = s
) * 0.05,
CALCULATE ( SUM ( 'Data'[Gross Sales] ), 'Data'[Store] = s )
)
)
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Is there a way to have multiple allocation logic by year?
For instance, in year 2020, I would like to split "Avocado" sales 9:1 to vegetable and fruits.
But in 2021, I would like to split "Avocado" sales 8:2 to vegetables and fruits.
I have a virtual date table such as below.
Appreciate your support
H