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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
powerbi_alvic
Frequent Visitor

DAX Measure with Conditional Filters

Hello guys,
I need help for this requirement.  Number of tickets rejected that have been passed previously(create_time) by commercial queue.

Is it possible to do it with a measure?

 

Captura.PNG

 

 

Please help! Any advice is welcome.

I appreciate your help guys!

Thank you!

1 ACCEPTED SOLUTION

Hi,

 

This should work for you:

 

___CountPassedbyCommercialPrev = 
var _dateRejected = CALCULATE(MAX('Table'[create_time]),'Table'[state]="rejected")
return

COUNTROWS (
    FILTER (
        ALL ( 'Table' ),
        'Table'[ticket_id] = SELECTEDVALUE ( 'Table'[ticket_id]) && 'Table'[queue] = "commercial" && 'Table'[create_time] <= _dateRejected )
    )


___CountPerTicket = 
SUMX(VALUES('Table'[ticket_id]),[___CountPassedbyCommercialPrev])

 

 

Link to the file here

 

In this video I explain how to approach and build such a measure. Hope its helpfull.

 

Kind regards,

 

 

Steve. 

 

 

 

View solution in original post

5 REPLIES 5
felipetrin
Regular Visitor

Hi!

 

Try that: 

Number of Tickets Rejected by Commercial = 
CALCULATE(
     COUNTROWS(Table),
     Table[state] = "rejected",
     Table[queue] = "commercial"
)

Hi,

 

This should work for you:

 

___CountPassedbyCommercialPrev = 
var _dateRejected = CALCULATE(MAX('Table'[create_time]),'Table'[state]="rejected")
return

COUNTROWS (
    FILTER (
        ALL ( 'Table' ),
        'Table'[ticket_id] = SELECTEDVALUE ( 'Table'[ticket_id]) && 'Table'[queue] = "commercial" && 'Table'[create_time] <= _dateRejected )
    )


___CountPerTicket = 
SUMX(VALUES('Table'[ticket_id]),[___CountPassedbyCommercialPrev])

 

 

Link to the file here

 

In this video I explain how to approach and build such a measure. Hope its helpfull.

 

Kind regards,

 

 

Steve. 

 

 

 

Great job, it is great !!!

Grateful for your help.

@powerbi_alvic , Welcome, hope you like the video? Thumbs up on the post(s) if you do 🙂

Thank you very much for answering.

But, the problem is that the conditions are in a different row (state = rejected, queue = commercial)

 

I attach pbix file here

 

https://we.tl/t-57lfjXBWDi 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors