Forum Discussion

DANI2021's avatar
DANI2021
Frequent Visitor
3 years ago
Solved

Power Bi Masure sum based on multiple criteria

      Hello all, I have a table with various information. I have an order. Different material numbers are assigned to this order. In my measure, the correct number is now displayed based ...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi DANI2021 ,

    I updated your sample pbix file(see the attachment), please check if that is what you want. Please update the formula of the measure [Total] as below:

    Total =
    SUMX (
        ALLEXCEPT (
            'Fabrikleistung',
            'Fabrikleistung'[Auftrag]
        ),
        [Factory Output]
    )

    Best Regards

  • Ashish_Mathur's avatar
    Ashish_Mathur
    3 years ago

    Hi,

    Try this measure

    Total 1 = SUMX(ALLEXCEPT('Fabrikleistung','Fabrikleistung'[Auftrag]),[Factory Output])

    Hope this helps.