Dear Sir,
In a certain scenario I have to check a Boolean value of a table field repeatedly & then do the work. Suppose the same found occasionally(Boolean = TRUE) in a Record Set, so my code should follow the Method-1 or Method-2.
Method-1
IF Boolean = TRUE THEN
DO
ELSE
DO NOTHING/SKIP/EXIT ;
Method-2
IF Boolean = FALSE THEN
NOTHING/SKIP/EXIT
ELSE
DO ;
Is there any difference between these two ??
Kindly reply.
Comments
Exactly!
What Should I check the (Boolean = TRUE) or (Boolean = FALSE) first when I know that the record set contains the (Boolean = TRUE) rarely.
Does any sequence matter ?