Skip to main content

Notifications

Announcements

No record found.

Finance | Project Operations, Human Resources, ...
Answered

Date Functions & Date Conversions in AX

Posted on by 572

Hi Experts,

I have a requirement for a report that I need to fetch the last record from a table based on the inputs provided which are Month & Year.

Example If user select the Year as 2021 and Month as August it has to look the field ToDate in my table and fetch the last record (The last record by field ToDate and there will not be multiple records for the same date)created in the Month of August 2021. 

DataTypes:- Year - Yr,

DataTypes:- Month - MonthOfYearId 

DataTypes:-  ToDate - TransDate. 

Can anyone help me with a select statement to filter the last record in the Table as per the above scenario. 

Thanks in advance. 

  • Verified answer
    Martin Dráb Profile Picture
    Martin Dráb 230,188 Most Valuable Professional on at
    RE: Date Functions & Date Conversions in AX

    I would use the imput to create a date value representing the first date of the next month:

    date d = mkDate(1, month   1, year);

    And then I would look for values smaller than this date. You'll also need to sort the query by ToDate and take just a single record.

    For example, this is how it would be done in an X select statement:

    select firstOnly myTable
    	order by ToDate desc
    	where myTable.ToDate < d;

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Suggested Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,253 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,188 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Product updates

Dynamics 365 release plans