August 23, 200718 yr Hello, On my "Search results" layout, I would like to be able to display the search string in the following way: Displaying # of # results for "search string" I show 25 results per page. At the moment I don't know how to put the "# of #" part in nor know how to put the search string on my layout. Any ideas? Thanks!
August 27, 200718 yr Create an unstored calculation field, with the following function: "Displaying " & Get (recordnumber) & " of " & Get( foundcount ) & " results for search string" Getting the search string is the hard part. How hard depends on how many fields the user can search in. The solution involves having the search criteria entered into a global field, and dsiplaying the contents of the global field.
August 27, 200718 yr Author Thanks very much for the help with the results field. Because the layout displays 25 results at a time (with a button to show the next 25 results) would there be a way to say "displaying results 1-25 of 60 results"..and then after clicking the Next button saying "displaying 26-50 of 60 results" or something like this?
August 27, 200718 yr How are you showing 25 per "page" on a layout? What mechanism? Browse mode or Preview mode?
Create an account or sign in to comment