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 derfloh 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
Joined
Dec 14, 2005
Messages
56
Location
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
 
Thanks Synapse....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top