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

Conditional filter by importance

Hi All,


I have looked extensively for help on this item and have been unable to find something similar.


What I want to do is be able to sort out from a table a specific set of rows according to a set of criteria using a measure. I have compiled all of this information into a single table in BI. As you can see in my example table below, I have accepted and declined quotes with date stamps. I want to take only one estimate in the last 6 months. If there is more then one, I want to exclude the others from my final result. Within that, I want to only take accepted estimates as priority, and if they are all declined, then take the most recent item. The end goal really is to only have one estimate for each car number in a 6 month timeframe.

 

DATEACCEPTED/DECLINEDESTIMATE NUMBERCar NumberAMOUNT $
1/2/2018ACCEPTED11445100
6/25/2018ACCEPTED12789150
1/29/2019DECLINED13122125
2/2/2019DECLINED14122105
7/10/2020DECLINED1544590
8/13/2020ACCEPTED16445100
9/3/2020DECLINED17445150

 

The result should look something like this

DATEACCEPTED/DECLINEDESTIMATE NUMBERCar NumberAMOUNT $
1/2/2018ACCEPTED11445100
6/25/2018ACCEPTED12789150
2/2/2019DECLINED14122105
9/3/2020ACCEPTED16445100

 

Thanks for the help. Feel free to ask clarifying questions if needed.

1 ACCEPTED SOLUTION
stevedep
Memorable Member
Memorable Member

Hi,

This was a nice one! Please see below how it works. You can select a date, which is used to define the time frame of 6 months. It will then look for accepted quotes, if it does not find any (coalece), it will take the most recent declined quote. Enjoy!
Please note; the date table is unrelated!

2021-02-25_06-32-05.gif

The DAX code:

 

_Filter =
VAR _selCurrentDate =
    SELECTEDVALUE ( DateDim[Date] )
VAR _6monthprior =
    EDATE ( _selCurrentDate, -6 )
RETURN
    IF (
        NOT ( ISBLANK ( SUM ( 'Table'[AMOUNT $] ) ) ),
        COALESCE (
            CALCULATE (
                COUNT ( 'Table'[ACCEPTED/DECLINED] ),
                FILTER (
                    'Table',
                    [DATE].[Date] > _6monthprior
                        && [DATE].[Date] <= _selCurrentDate
                        && [ACCEPTED/DECLINED] = "ACCEPTED"
                )
            ),
            VAR _SELcar =
                SELECTEDVALUE ( 'Table'[Car Number] )
            VAR _MaxDateDeclined =
                CALCULATE (
                    MAX ( 'Table'[DATE].[Date] ),
                    FILTER (
                        ALL ( 'Table' ),
                        [Car Number] = _SELcar
                            && [DATE].[Date] > _6monthprior
                            && [DATE].[Date] <= _selCurrentDate
                            && [ACCEPTED/DECLINED] = "DECLINED"
                    )
                )
            RETURN
                CALCULATE (
                    COUNT ( 'Table'[ACCEPTED/DECLINED] ),
                    FILTER ( 'Table', [DATE].[Date] = _MaxDateDeclined && [Car Number] = _SELcar )
                )
        ),
        BLANK ()
    )

 

File is attached. 

Kind regards, Steve. 

 

View solution in original post

4 REPLIES 4
stevedep
Memorable Member
Memorable Member

Hi,

This was a nice one! Please see below how it works. You can select a date, which is used to define the time frame of 6 months. It will then look for accepted quotes, if it does not find any (coalece), it will take the most recent declined quote. Enjoy!
Please note; the date table is unrelated!

2021-02-25_06-32-05.gif

The DAX code:

 

_Filter =
VAR _selCurrentDate =
    SELECTEDVALUE ( DateDim[Date] )
VAR _6monthprior =
    EDATE ( _selCurrentDate, -6 )
RETURN
    IF (
        NOT ( ISBLANK ( SUM ( 'Table'[AMOUNT $] ) ) ),
        COALESCE (
            CALCULATE (
                COUNT ( 'Table'[ACCEPTED/DECLINED] ),
                FILTER (
                    'Table',
                    [DATE].[Date] > _6monthprior
                        && [DATE].[Date] <= _selCurrentDate
                        && [ACCEPTED/DECLINED] = "ACCEPTED"
                )
            ),
            VAR _SELcar =
                SELECTEDVALUE ( 'Table'[Car Number] )
            VAR _MaxDateDeclined =
                CALCULATE (
                    MAX ( 'Table'[DATE].[Date] ),
                    FILTER (
                        ALL ( 'Table' ),
                        [Car Number] = _SELcar
                            && [DATE].[Date] > _6monthprior
                            && [DATE].[Date] <= _selCurrentDate
                            && [ACCEPTED/DECLINED] = "DECLINED"
                    )
                )
            RETURN
                CALCULATE (
                    COUNT ( 'Table'[ACCEPTED/DECLINED] ),
                    FILTER ( 'Table', [DATE].[Date] = _MaxDateDeclined && [Car Number] = _SELcar )
                )
        ),
        BLANK ()
    )

 

File is attached. 

Kind regards, Steve. 

 

@stevedepThank you so much for the help. You are directionally where I need to be headed. I think slight tweaks will to your outline will work for me. I hadn’t even thought to break it down with date VARs. That really helped to go line by line as needed. I know it was a bit of a complex problem, but you nailed it. Thanks again.

Welcome! I enjoy the complex problems the most 🙂

lbendlin
Super User
Super User

Your criteria are ambiguous for car 445.  Do you want to see all accepted quotes or only the latest one?

 

"The end goal really is to only have one estimate for each car number in a 6 month timeframe." 

 

how do you define the boundaries of that 6 month timeframe?

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.