quantzombie
Programmer
Hi All,
If I use nvl(var1,foo(xyz)) will the function foo executed everytime even if var is not NULL ?
If I use nvl(var1,foo(xyz)) will the function foo executed everytime even if var is not NULL ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
x=1
y = 2
? x,y && 1,2
x = Nvl(y,_vfp.DoCmd("y=x"))
? x,y && 2,1