Forum Discussion

Javi77's avatar
Javi77
Frequent Visitor
8 years ago
Solved

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...
  • Phil_Seamark's avatar
    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])
    
    )