web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Microsoft Dynamics NAV (Archived)

Verify IF a date is between two Dates

(0) ShareShare
ReportReport
Posted on by

Hi experts,

Please how can i Verify IF a date is between two Dates .

e.g

how to verify if 05/02/2010  is in this interval   01/02/2010 and 31/07/2011

thank's

*This post is locked for comments

I have the same question (0)
  • Verified answer
    mmv Profile Picture
    11,471 on at
    RE: Verify IF a date is between two Dates

    Hi,

    You may use the if condition.

    IF (inputdate >= Date1) AND (inputdate <= date2) THEN

  • Verified answer
    Luc van Vugt Profile Picture
    on at
    RE: Verify IF a date is between two Dates

    Let NAV be your guide. Have a look in one of the "Check Line" codeunits.

    You will find this code which is more or less doing what you are asking:

     IF ("Posting Date" < AllowPostingFrom) OR ("Posting Date" > AllowPostingTo) THEN

       FIELDERROR("Posting Date",Text001);

  • Verified answer
    keoma Profile Picture
    32,729 on at
    RE: Verify IF a date is between two Dates

    by code:

    if (YourDate >= DMY2DATE(1,2,2010)) and (YourDate <= DMY2DATE(31,7,2011)) then

    begin

    // do something

    end;

    by code filtering:

    rec.setfilter(YourDateField,'>=%1',DMY2DATE(1,2,2010));

    rec.setfilter(YourDateField,'<=%1',DMY2DATE(31,7,2010));

    if rec.findfirst then

    // do something

    by properties:

    goto field properties and set values for MinValue and MaxValue.

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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Abhilash Warrier – Community Spotlight

We are honored to recognize Abhilash Warrier as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics NAV (Archived)

#1
Alexander Ermakov Profile Picture

Alexander Ermakov 2

#2
SC666 Profile Picture

SC666 1

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans