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!

passing information through formulas

Status
Not open for further replies.

obuspider

Programmer
Oct 31, 2002
78
0
0
US
The following code is used to pass from and to dates to Crystal Reports through an ASP page. Can anyone tell me if there is a way to modify this or my Crystal report so that I can pass a text string instead of a date?

set session("f")=session("orpt").formulafields

set fromdateformula=session("f").item("fromdate")
fromdateformula.text="'"&fsale_date&"'"

set todateformula=session("f").item("todate")
todateformula.text="'"&tsale_date&"'"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top