Hi all
Have situation where a client receives payment for orders as a schedule. The schedule can be up to 6 monthly payments, depending on the order value.
The data has to be extracted from a table that gives
OrderNo, TotalDue, FirstPaymentDate
I can get to a query that calculates the subsequent payments and due dates lik this
OrderNo, TotalDue, Payment1Date, Payment1, Payment2Date, Payment 2 etc
I'd like now to be able to extract all payments due in any one month, and create an output as below
Order No Amount Due
1007 175
1103 225
1155 190
Is this possible?
Have situation where a client receives payment for orders as a schedule. The schedule can be up to 6 monthly payments, depending on the order value.
The data has to be extracted from a table that gives
OrderNo, TotalDue, FirstPaymentDate
I can get to a query that calculates the subsequent payments and due dates lik this
OrderNo, TotalDue, Payment1Date, Payment1, Payment2Date, Payment 2 etc
I'd like now to be able to extract all payments due in any one month, and create an output as below
Order No Amount Due
1007 175
1103 225
1155 190
Is this possible?