PDA

View Full Version : query problem



eran3185
06-02-2007, 05:26 AM
i have a report.
one of the parameters on that report is "amount"
i want a query that ask the user "enter amount" and then the user get only the records that low then the amount that the user fill-in.

OBP
06-02-2007, 07:00 AM
eran, the query is where you put the parameter.
In the Amount Column's Criteria Row type in
[Enter Amount]


Make sure that your Report uses that Query for it's Data Source.

eran3185
06-02-2007, 07:22 AM
hey
but if the user fill in "500" - he get all the records with 500 , but i want all the records that low (400 , 420 , 450 etc...)

OBP
06-02-2007, 07:26 AM
eran, place a
<
in front of the
[Enter Amount]

so that you have
< [Enter Amount]

eran3185
06-03-2007, 11:03 PM
thanks