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

BROWSE between two dates??

Status
Not open for further replies.

baileybelle

Technical User
Jul 22, 2002
10
US
How would you use the BROWSE command to search a table between two dates and meeting another criteria? For example using an SQL statement I might use something light this..

SELECT * FROM tablename WHERE date between date1 and date2 AND companyname = 'ABC'

How could this be accomplished with the BROWSE or COUNT commands?
 
After having the appropriate table selected:

BROWSE LAST FOR BETWEEN(dateval,date1,date2) AND companyname = 'ABC'

 
Hi

BROWSE FOR BETWEEN(myDate,date1,date2) AND ;
companyname == 'ABC'

:)
ramani :)
(Subramanian.G),FoxAcc, ramani_g@yahoo.com

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top