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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ICHIST Query 1

Status
Not open for further replies.

dtmb

Technical User
Jan 22, 2007
54
0
0
JM
How can I query ICHIST to produce two different set of data on the same report i.e using two similar parameters but for different time periods.

Thanks
 
You will have to use formula to pull data for a time period, something like
If TRANSDATE >= 20080101 AND TRANSDATE <= 20080131 THEN .....
for the one date range and
If TRANSDATE >= 20071101 AND TRANSDATE <= 20071231 THEN .....
for the second date range.
 
Thanks, did exactly that, put they overwrite each other.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top