setrange <>, how is it possible?
for example we don’t want field “NKS No.” that is empty
how to setrange it?
thanx for the answer…
setrange <>, how is it possible?
for example we don’t want field “NKS No.” that is empty
how to setrange it?
thanx for the answer…
Record.SETFILTER(“NKS No.” ,’<>%1’,’’);
Bye bye
Avoid the use of “not equal to” if using the SQL database. It results in table scans and can impact performance.
Record.SETFILTER(“NKS No.” ,’>%1’,’’);
ok, thanks for the answer
case closed !