[SOLVED] BeforeAdd Calculation |
4/1/2010 08:59:25 | |
| ASPRunnerPro General questions | ||
|
M
mark.field author
Hi, |
||
|
J
|
Jane 4/2/2010 |
|
Hi, if dict("RecordType") = "Excess on Receipt" and dict("QtyAdvised") >= dict("QtyReceived") and dict("QtyAdvised")-dict("QtyReceived)<>dict("Quantity") Then |
|
|
M
|
mark.field author 4/6/2010 |
|
Hi, try to use this one: if dict("RecordType") = "Excess on Receipt" and dict("QtyAdvised") >= dict("QtyReceived") and dict("QtyAdvised")-dict("QtyReceived)<>dict("Quantity") Then
if dict("RecordType") = "Excess on Receipt" and CInt(dict("QtyAdvised")) >= CInt(dict("QtyReceived")) and CInt(dict("QtyAdvised"))-CInt(dict("QtyReceived))<>CInt(dict("Quantity")) Then
|
|