我目前正在编写一个简单的VB脚本,用于内部应用程序的数据验证。不幸的是,当我期望数字结果时,结果返回一个空值。脚本如下。
Dim Result, QuantityPerInnerPack, QuantityPerIndividualUnit
Result = 1
QuantityPerInnerPack = 2
QuantityPerIndividualUnit = 250
If QuantityPerInnerPack <- 1 Then
Result = QuantityPerIndividualUnit
Else
Result = QuantitytPerInnerPack
End If
WScript.Echo Result