Hi
I want to loop from start date to end date. How I can add 1 to start date till it is equal to end date
Thanks
*This post is locked for comments
Hi
I want to loop from start date to end date. How I can add 1 to start date till it is equal to end date
Thanks
*This post is locked for comments
Hi jsshivalik,
Put the code
StartDate:=CALCDATE('< +1D >',TODAY);
inside the REPEAT UNTIL loop.
Hi Chris
There is one issue . If EndDate = 11/03/2018 . Start Date = 01/03/2018. When i loop according to the above Code it display Data only till 10/03/2018. Since at this Stage Start Date becomes equal to EndDate then it should not go in Repeat Loop which i think so.
Thanks
Hi,
StartDate:=CALCDATE('< +1D >',TODAY); //here I'm adding 1 day to Today's date.
REPEAT
//ur code
UNTILL startdate=ENDdate
Hi
I want to add 1Day to Start Date till it becomes equal to End Date . In this case i don't want to use Setrange.
Thanks
Rec.RESET;
Rec.SETRANGE(Date,StartDate,EndDate);
IF Rec.FINDSET THEN
REPEAT
//Loop
UNTIL Rec.Next = 0;
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,214 Most Valuable Professional
nmaenpaa 101,156