reporting within specified days

runswithsizzors

Well-known member
Joined
May 11, 2005
Messages
70
Location
Northern Michigan
Programming Experience
5-10
I am creating a crystal report and having some mental blocks. I need to create a report for an accounting program and one of the reports is deposits within specified days.

For example user will type in 6 and the report needs to display all the deposits needed from today to 6 days out.

Is there a clean way of doing that. I have created a view to display all the information, is there some way in crystal to have that as a parameter? Or a formula in the selection expert that will do this form me?

Thanks to all that reply!
 
when you say 6 days out, I assume you mean 6 days ago?

I achieved this with 2 dateTimePickers on the form. These were startDate and endDate. I set these as parameters in the report.

I then had a textbox that when the number was entered, it took that amount of days off of the StartDate and set it as the value for the endDate.

you can then use these parameters to run the report against....
 
Back
Top