Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Report

Former Member
0 Likes
521

Experts,

My requirement is like this:

I have to display the how many number of deliveries are there for particular day.

In that If i have multiple number of deliveries for particular date

I need to count how many number of deliveries are there for that particular date.So, how to differntiate the dates and how to count the number of deliveries.

Thanks.....

Sridhar.....

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
498

Hello,

You need to get the deliveries for the particular day by using the date:

date <= 'particular date'

and date >= 'particular date'.

This will give you all the deliveries on that 'particular date'. Hope it helps you.

Thanks,

Jayant Sahu.

2 REPLIES 2
Read only

Former Member
0 Likes
499

Hello,

You need to get the deliveries for the particular day by using the date:

date <= 'particular date'

and date >= 'particular date'.

This will give you all the deliveries on that 'particular date'. Hope it helps you.

Thanks,

Jayant Sahu.

Read only

Former Member
0 Likes
498

You can Sort the table by date.

Loop at internal table.

increase the Count by 1.

At End of Date. move the count value to date count.

clear count.

End At.

Endloop.