June 13, 200619 yr Is there a way that I can script to have a user interface to enter the find parmaters. For example, say I want to find data entered between two dates, but I want to user to set the dates each time they run the script. Is there a way to have say a box pops up that the user can enter the start date (START), and click enter and the another box pops up and the user enters the end date (END) and then the scripts finds START..END? I come from using MS Access and could do this in that program, looking to see if there is a similar function here? Thanks, Scott
June 13, 200619 yr Hey there! Create two global fields, such as globStartDate and globEndDate for a script: Show custom dialog (Click on Specify... When you specify the custom dialog you can put both the globStartDate and the globEndDate fields in the same dialog) Enter Find Mode Set field [Date; GlobStartDate & "..." & GlobEndDate] Perform Find
Create an account or sign in to comment