Forum Discussion
Javi77
8 years agoFrequent Visitor
M2M Dax Formula
Hi all, I am trying to calculate the Sales per door with dax, but i need some help In my scenario. My sales table have sales per costumer, but, i have another table whith the % of distribution...
- 8 years ago
HI Javi77
I think this calculated measure gets pretty close.
AmountPerDoor = IF( ISFILTERED('Door_Location2'[Costumer]), -- THEN -- [%Dist_per_door]*[Amount_by Costumer], -- ELSE -- SUMX(ALL('Door_Location2'[Costumer]),[%Dist_per_door]*[Amount_by Costumer]) )
Phil_Seamark
8 years agoMicrosoft Employee
HI Javi77
I think this calculated measure gets pretty close.
AmountPerDoor =
IF(
ISFILTERED('Door_Location2'[Costumer]),
-- THEN --
[%Dist_per_door]*[Amount_by Costumer],
-- ELSE --
SUMX(ALL('Door_Location2'[Costumer]),[%Dist_per_door]*[Amount_by Costumer])
)- Javi778 years agoFrequent Visitor
its works!!!
Thank you so much...