Hi Guys,
I want to do this:
iif([POP] = 1 OR 2 OR 3,[POP]+1,[POP])
When I wrote it like that, it just added 1 to everything - even if the POP wasn't 1,2,or 3.
What am I doing wrong?
[POP] = 1
[POP] = 2
[POP] = 3
(1 OR 2 OR 3)
IIf([POP]>=1 OR [POP]<=3, [POP] + 1, [POP])
x = 5
If Not x = 1 Then
If 2 Then
If 3 Then
x = 5 + 1
Else
x
End If
End If
End If
x = 5
If Not x = 1 Then
If Not x = 2 Then
If Not x = 3 Then
x = 5 + 1
Else
x
End If
End If
End If