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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
AleksandrMe
Resolver I
Resolver I

Advanced Date Filtering using DAX

Good day, 

 

I have data quesry consists of number of Execel files. 

 

Query has colunms "SHIP NAME" and "Date of Reports". Some of the "SHIP NAME" repeats various times with different "DATES". While ago I was interested to filter out only latest date lines for visuals and used following measures and custom colums:

 

1) Max Date = calculate(max('RNA Date of Report'[Date of Report].[Date]), filter('RNA Date of Report', 'RNA Date of Report'[Ships Name]=EARLIER('RNA Date of Report'[Ships Name])))
 
2) IsLatest = If('RNA Date of Report'[Date of Report].[Date]='RNA Date of Report'[Max Date].[Date],"Latest Audit", "All Audits")
 
Since there are much more lines in the quesry for the same "SHIPS NAME" - I'm looking for possibility to create filter for previous to last date. Some have 2 lines, but some have 3+ (dates). Any ideas? 
 
Thanks
Aleks 
 
 
5 REPLIES 5
smpa01
Super User
Super User

@AleksandrMe  can you provide sample data

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

AleksandrMe_0-1633524562705.png

 

VahidDM
Super User
Super User

Hi @AleksandrMe 

 

Can you add a sample of your data and result here?

For the Max Date measure, you can use LASTDATE ('RNA Date of Report'[Date of Report])
Max Date=LASTDATE ('RNA Date of Report'[Date of Report])

and then if you want to use that in the other measure, you can add a variable in your measure like this:

 

IsLatest =
VAR _MaxDate =
    CALCULATE (
        LASTDATE ( 'RNA Date of Report'[Date of Report] ),
        ALLEXCEPT ( 'RNA Date of Report', 'RNA Date of Report'[Ships Name] )
    )
RETURN
    IF (
        'RNA Date of Report'[Date of Report] = _MaxDate,
        "Latest Audit",
        "All Audits"
    )

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos✌️!!

Good day, 

 

Thnaks for reply. What I'm looking for is the new measure which will filter out date previous to last. The above one is not helping me, or I;m doing something wrong.

 

Kidn Regards

Aleks 

 

Raally looking for solution how to use DAX function to recognize LATEST, Previous Date for each line. 

 

I use below functions to recognize latest, but cannot progress more ("all audit"s need to be broken down on more conditions)

 

1) Max Date = calculate(max('RNA Date of Report'[Date of Report].[Date]), filter('RNA Date of Report', 'RNA Date of Report'[Ships Name]=EARLIER('RNA Date of Report'[Ships Name])))
 
2) IsLatest = If('RNA Date of Report'[Date of Report].[Date]='RNA Date of Report'[Max Date].[Date],"Latest Audit", "All Audits")
 
Any more ideas? 
 
THnaks
Aleks 
 
#help needed

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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