|
|
Sergey Kornilov admin 10/3/2011 |
|
In BeforeEdit event you can use values and oldvalues arrays i.e. if values("Appliers")<>oldvalues("Appliers") then ...
if values("Appliers")<>"" then ... |
|
|
Y
|
yairilan author 10/4/2011 |
|
Thanks! if values("Appliers")<>oldvalues("Appliers") then ...
|
|
|
|
Sergey Kornilov admin 10/4/2011 |
|
Yair, |
|
|
Y
|
yairilan author 10/4/2011 |
|
Thanks! |
|
|
|
Sergey Kornilov admin 10/4/2011 |
|
The number of ifs depends on your business logic. Each if tests it's own condition i.e. if old value is different from new value or if new value is empty. |
|