Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Selection criteria on Date

Status
Not open for further replies.

busi1

Technical User
Dec 14, 2005
56
US
Hi,

I have a date field called Table_create_date.It should select the data of previous seven days everytime i run the report.

I am using crysatl 10.0 and oracle 9

Thanks,
 
Use Report->Selection Formulas-REcord and place:

(
Table_create_date >= currentdate-7
and
Table_create_date <= currentdate-1
)

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top