A
|
ann 6/4/2010 |
Hi, if ($values["Field1"] && $values["Field2"] && ...) |
W
|
wisdom2009 author 6/4/2010 |
Hi, use Before Insert Record event on the Events tab to check whether you want import (return true) or not(return false). Here is a sample: if ($values["Field1"] && $values["Field2"] && ...)
|
A
|
ann 6/4/2010 |
Hi, if not IsNull(values("Field1")) AND (not IsNull(values("Field2"))) AND ... then
|
W
|
wisdom2009 author 6/4/2010 |
Hi, it's my fault. Here is a correct code: if not IsNull(values("Field1")) AND (not IsNull(values("Field2"))) AND ... then
|
A
|
ann 6/7/2010 |
Hi, |