Good Morning All,
I may be exceeding the limitations of forms here, but I wanted to bounce this off the community for validation. I have a form in which I need to have the user specify a starting and ending date. Those date are then used to perform a SQL lookup. All rows that are between those 2 dates should be returned and displayed in a table (or collection) in Forms.
1. I can't use lookup rules because I have no option to pass the values of the "search between" dates, only if something matches.
2. I can't use Javascript or HTML because as stated by Brett Hickinbotham in this post (https://answers.laserfiche.com/questions/57966/Use-Custom-HTML-or-JavaScript-to-query-SQL-and-display-results-on-a-form#82540), the JavaScript is executed clientside, so it won't have access to the database, and HTML just doesn't have query capabilities.
3. I can't use a stored procedure because I have no way to pass it the "search between" dates from Forms.
4. I can't use workflow because the form is not submitted, it is used as a lookup tool.
Does anyone have a way to achieve this?