March 25, 200916 yr In one of my scripts i perform i find but i need get the number of records found in that script because i need it for an equation. anybody know how to do this?
March 25, 200916 yr You are looking for Get ( FoundCount ). So if you want to end the script showing a custom dialog of how many records were exported (from the found set), dialog calculation would be something like: "There " & Case ( Get ( FoundCount ) > 1 ; "were "; "was " ) & Get ( FoundCount ) & " record" & Case ( Get ( FoundCount ) > 1 ; "s" ) & " found."
Create an account or sign in to comment