Forum Discussion

manuellchavez's avatar
manuellchavez
Icon for Advocate I rankAdvocate I
6 years ago
Solved

DAX Measure - Ignore specific filter but keep some others

Hello, I am trying to create a visual similar to the one below: The first measure is something like this: Quantity = calculate(sum(quantity),filter(colortable, colortable[date]=max(masterd...
  • AlB's avatar
    AlB
    6 years ago
    Quantity =
    CALCULATE (
        SUM ( colortable[quantity] ),
        FILTER ( ALL( colortable[date] ), colortable[date] = MAX ( masterdate[date] ) ),
        ALL ( colortable[color] )
    )

    If this doesn't work do share the pbix or at least a sample of your tables (in text-tabular format, not screen capture)

     

    Please mark the question solved when done and consider giving kudos if posts are helpful.

    Cheers  Datanaut