Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Answered

Date Functions & Date Conversions in AX

(0) ShareShare
ReportReport
Posted on by 578

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
    231,777 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

Daivat Vartak – Community Spotlight

We are honored to recognize Daivat Vartak as our March 2025 Community…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Kudos to the February Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 292,907 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,777 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156 Moderator

Leaderboard

Product updates

Dynamics 365 release plans