VB中的 iif 函数 这样用不对吗?为什么提示错误?
问题描述:
VB中的 iif 函数 这样用不对吗?为什么提示错误?
iif(a Mod 7 = 0,s = s + a,s = 1 + 1)
答
Function CheckIt (TestMe As Integer)
CheckIt = IIf(TestMe > 1000, "Large", "Small")
End Function
里面不要写 S=.