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
xRTP
Helper V
Helper V

Filter most recent date

Hello, 
Ive been using dax, i would like to filter the newest date for Request Release Date Column on CA Omega Table. Do i need to add a new column to get my data or just a new measure? Plus why i cant put my column name after EARLIEST(). Advance thank you to your inputs!

xRTP_0-1654436930682.png

 

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @xRTP ,

You can create a measure as below, please find the details in the attachment.

OMNew Volume = 
VAR _recentdate =
    CALCULATE (
        MAX ( 'CA Omega'[Request Release Date] ),
        ALLSELECTED ( 'CA Omega' )
    )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'CA Omega'[Request ID] ),
        FILTER (
            ALLSELECTED ( 'CA Omega' ),
            'CA Omega'[Request Release Date] = _recentdate
        )
    )

yingyinr_0-1657087362341.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

10 REPLIES 10
v-yiruan-msft
Community Support
Community Support

Hi @xRTP ,

You can create a measure as below, please find the details in the attachment.

OMNew Volume = 
VAR _recentdate =
    CALCULATE (
        MAX ( 'CA Omega'[Request Release Date] ),
        ALLSELECTED ( 'CA Omega' )
    )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'CA Omega'[Request ID] ),
        FILTER (
            ALLSELECTED ( 'CA Omega' ),
            'CA Omega'[Request Release Date] = _recentdate
        )
    )

yingyinr_0-1657087362341.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
tamerj1
Super User
Super User

Hi @xRTP 

please try

OMNew Volume =
VAR FirstDateEver =
    CALCULATE ( MIN ( 'CA Omega'[Request Release Date] ), REMOVEFILTERS () )
RETURN
    CALCULATE (
        COUNT ( 'CA Omega'[Request ID] ),
        'CA Omega'[Request Release Date] = FirstDateEver
    )

Hello,

 

This works! thanks. But is it possible to count rows all entrys with the most recent date? It only return 1 transaction

xRTP_0-1654498757517.png

 

@xRTP 

Please clarify with example 

Hello,
Here it counts how many recent so it returns 1 value. The thing is I want to count rows of request ID that has the most recent date, It should return 10 value since there are 10 RequestID that was dated on June 2 (which is recent ATM) so i tried using this code but in visualizer it says it coudnt load the data for this visual

 

OMNew Volume =
VAR FirstDateEver =
CALCULATE ( MIN ( 'CA Omega'[Request Release Date] ), REMOVEFILTERS () )
RETURN
CALCULATE (
COUNTROWS( 'CA Omega'),'CA Omega'[Request ID],
'CA Omega'[Request Release Date] = FirstDateEver
)

xRTP_1-1654503334274.png

 

xRTP_0-1654503083910.png

 

@xRTP 
Would you please RETURN FirstDateEver variable and see the results?

Yah already did but it still count 1 value

@xRTP 
Maybe you have a blank date somewhere, Please try

OMNew Volume =
VAR FirstDateEver =
    CALCULATE (
        MIN ( 'CA Omega'[Request Release Date] ),
        REMOVEFILTERS (),
        'CA Omega'[Request Release Date] <> BLANK ()
    )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'CA Omega'[Request ID] ),
        'CA Omega'[Request Release Date] = FirstDateEver,
        REMOVEFILTERS ()
    )

@xRTP 
Please try

OMNew Volume =
VAR FirstDateEver =
    CALCULATE ( MIN ( 'CA Omega'[Request Release Date] ), REMOVEFILTERS () )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'CA Omega'[Request ID] ),
        'CA Omega'[Request Release Date] = FirstDateEver,
        REMOVEFILTERS ()
    )

Hello, It still returns 1 value 😞 

xRTP_0-1654505868121.png

 

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.