FIND('=><')

Hi all

What does mean “FIND(’=><’)”? anyone explain me

Thanks so much

Basically, it means “find any”. The = will look for exact matches, if it doesn’t find anything, the > looks for values greater, and if that doesn’t find anything, the < will look for values smaller. There was a great post about this in the Dynamics Book wiki, click here.

This code is almost always used to test if there are any entries in a table. So that you can process the first insertion appropriately. [:)]