Forum Discussion

DennisJung's avatar
DennisJung
Icon for Helper I rankHelper I
9 years ago
Solved

Calculate Orders with and without specific items

Hey!   It is already friday and i try to finish my report, but i can not solve or create the correct measure for the following Request:   - Summarize all orders without  transport costs - list a...
  • v-chuncz-msft's avatar
    9 years ago

    DennisJung,

     

    You may use the following DAX to add a measure.

    Measure =
    SUMX (
        FILTER (
            Table1,
            NOT (
                CONTAINS (
                    Table1,
                    Table1[Ordernumber], Table1[Ordernumber],
                    Table1[article], 90
                )
            )
        ),
        Table1[value]
    )