Forum Discussion

Rbakker888's avatar
Rbakker888
Icon for Helper II rankHelper II
1 year ago
Solved

Sumarization issue with DAX formula

I am trying to make some visuals with a formula for revenue where I multiply the revenue by 10 times if the product is a contract, the issue I am having is that it seems to summarize all the revenue ...
  • Deku's avatar
    Deku
    1 year ago

    Try the second solution and this

     

    SUMX(

    Values(Dimension[ArtikelCategorie]),

    Calculate( sum(fact_Orders[Order Marge Bedrag €] )) *

     IF (

     Dimension[ArtikelCategorie] = "Contract", 10, 1)

    )