patrickstrijdonck
Programmer
Hello,
I have got a strange thing in MS Access, When i use the following rule;
If Count is 1 it will show "False" = Correct!
If Count is 2 trough 9 it will show "True" = Correct!
If Count is 10 trough 19 it will show "False" = NOT CORRECT!
If Count is 20 and higher it will show "True" = Correct!
If I replace "2" in the rule and replace it with "3", 10 trough 29 will show "False"
It seems that Access is calculating like this
1
11
12
13
14
15
16
17
18
19
2
21
Etc......
Which means that 19 is not higher then 2
Any logical reason for this?
Thanks in advance!
I have got a strange thing in MS Access, When i use the following rule;
Code:
IIf([Count]>="2","True","False")
If Count is 1 it will show "False" = Correct!
If Count is 2 trough 9 it will show "True" = Correct!
If Count is 10 trough 19 it will show "False" = NOT CORRECT!
If Count is 20 and higher it will show "True" = Correct!
If I replace "2" in the rule and replace it with "3", 10 trough 29 will show "False"
It seems that Access is calculating like this
1
11
12
13
14
15
16
17
18
19
2
21
Etc......
Which means that 19 is not higher then 2
Any logical reason for this?
Thanks in advance!