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

"date" parameter keep it together !!!

Status
Not open for further replies.

dafty

Programmer
Jul 21, 2001
40
0
0
TH
dear, everyone.

I used two "Date" parameter fields in my report ... When i preview my report the Dialog box show to ask two value of the parameter.Then, I input first date and then second date it ok ... But when i click to see for check the value . I found it same!! i try to change it BUT It don't seperate change , IT stay value together . How it does !!!

help me please...

thank u, daft.

----------------------------------
[daftywork : work 4 everyone.]
>>
 
It sounds like you used a date range parameter if you have 2 values.

To display the values entered use a formula:

totext(minimum({?dateparm))+" thru "+totext(maximum({?dateparm))

-k
 
To synapsevampire

it isn't range parameter ,i use 2 discrete value parameter. but your suggestion is useful for me. do u thing I should range parameter ? yes, i should use it. But I don't . Cause my report have to connect to VB and i used RAS Method. It don't support range value parameter. OR it does. I don't have idea about. do u recommend some method better to me.

thank u., dafty

----------------------------------
[daftywork : work 4 everyone.]
>>
 
To use discrete values, use:

totext({?dateparm}[1])+" thru "+totext({?dateparm}[2])

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top