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
Coffeeaddict
Frequent Visitor

Need help with filters for dax

I am trying to rank items in a data set based on several variables. I have so far used

 

so index = IF(
    SELECTEDVALUE ('Slot Detail v2 %28auto%29'[prog State Code] ) <> 3,
RANKX (
    FILTER (
        'Slot Detail v2 %28auto%29',
        EARLIER ( 'Slot Detail v2 %28auto%29'[Staff Number] ) = 'Slot Detail v2 %28auto%29'[Staff Number]
            && EARLIER ( 'Slot Detail v2 %28auto%29'[Start Date] ) = 'Slot Detail v2 %28auto%29'[Start Date]
            && EARLIER ('Slot Detail v2 %28auto%29'[TCID]) = 'Slot Detail v2 %28auto%29'[TCID]
           
    ),
    'Slot Detail v2 %28auto%29'[Start Time],
    ,
    ASC
)) 

 

This works to a point but i also need the if statement to evaluate futher.

 

I would normally (in crystal reports) use a formula such as

 

If ('Slot Detail v2 %28auto%29'[prog State Code] ) <> 3 and

           (if('Slot Detail v2 %28auto%29'[Activity code]) =blank and if('Slot Detail v2 %28auto%29'[slot State Code] <>3) then

RANKX (
    FILTER (
        'Slot Detail v2 %28auto%29',
        EARLIER ( 'Slot Detail v2 %28auto%29'[Staff Number] ) = 'Slot Detail v2 %28auto%29'[Staff Number]
            && EARLIER ( 'Slot Detail v2 %28auto%29'[Start Date] ) = 'Slot Detail v2 %28auto%29'[Start Date]
            && EARLIER ('Slot Detail v2 %28auto%29'[TCID]) = 'Slot Detail v2 %28auto%29'[TCID]
           
    ),
    'Slot Detail v2 %28auto%29'[Start Time],
    ,
    ASC
)) 

 

 

 

Any idea how to get the rest of the if statement in there?

 

0 REPLIES 0

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