What would be the best way to handle the following in Forms?
Customer has a data source which they use to find a fee. The fee is determined by finding the range of the valuation and using the fee for that range. We capture the valuation in the form but I'm not sure how to assign the appropriate fee.
Example:
Valuation From | Valuation To | Fee |
$100.00 | $1,000.00 | $25.00 |
$1,001.00 | $1,500.00 | $50.00 |
Using the table above, any Valuation between $100 and $1000, the fee would be $25.
How is the best handled? A stored procedure? If so, can you provide an example?
Thanks,