Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply

DAX measure help ignore filter

Hallo

 

Hope someone can help me. I havde this measure:

 

venuemanager =
var endags = CALCULATE(SUM('Digital produkt status'[Antal]), FILTER('Alle produkter', 'Alle produkter'[Type]="endags"))

var partout = CALCULATE(
SUM('Digital produkt status'[Antal]), ALL('Alle produkter'[Dag]), FILTER('Alle produkter', 'Alle produkter'[Type]="partout")
)

return endags + partout
 
and it return:
 
 

image.png

 

But i want this output: If type = "Partout" then ignore the day filter called "Dag" but it dont work

 

 

image.png

 

Best regards Andreas Alleslev

8 REPLIES 8
jameszhang0805
Resolver IV
Resolver IV

Please try 

VAR endags =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    FILTER (
        'Alle produkter',
        'Alle produkter'[Type] = "endags"
    )
)
VAR partout =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    'Alle produkter'[Type] = "partout"
)

RETURN endags + partout

 

thank for your answar. it gives the same result

 

andreasalleslev_0-1613986383573.png

 

VAR endags =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    FILTER (
        'Alle produkter',
        'Alle produkter'[Type] = "endags"
    )
)
VAR partout =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    'Alle produkter'[Dag] = "partout"
)

RETURN endags + partout

Hmm, no is the same result. But i have tried, and now i get the correct answar but the result is in the wrong row?? the result for Partout must be in the row partout

 

andreasalleslev_0-1613989786080.png

 

rfigtree
Resolver III
Resolver III

does "dag" come from your calendar table, maybe you need to use filter(all(caledar, ...  in your calculate.

 

other wise try FILTER(allexcept('Alle produkter','Alle produkter'[Type]), 'Alle produkter'[Type]="partout") 

 

Nope, is come from the product table. the product table have af "Type" and af "Dag" collum. and when the "type" is "Partout" then ignore the "Dag" collum. 

other wise try FILTER(allexcept('Alle produkter','Alle produkter'[Type]), 'Alle produkter'[Type]="partout") 

Hmm, nope, is dosent work. it fails:

 

andreasalleslev_1-1613985296427.png

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.