> >
> > LOCAL lnResult
> > lnResult = This.Value
> > REPLACE NEXT 1 yourResultField With ICASE( ;
> > m.lnResult > 80, 'Distinction', ;
> > m.lnResult >= 70, 'Credit', ;
> > m.lnResult >= 55, 'pass', ;
> > m.lnResult < 55, 'Fail', ;
> > 'n/a' ) IN This.Parent.Parent.RecordSource
> >
> >
>
> hi Stefan,
>
> has 'NEXT 1' some purpose here, i dont know, and/or do u want me to ask a a new question in this thread? :)
Hi Ron,
No real purpose, since "Next 1" is the default scope anyway.
It somehow looks more "readable" to me to mention "Next 1" (as opposed to "... ALL [FOR] ..."), as a matter of taste.
(The other reason to write it was to provoke you to ask that question in the middle of this thread :-)
Regards
-Stefan