I have column value which is text and have missing value. I want to chang it to numerci.
table1
value
2
3
5
8
7
the code iff(clng(value)>5, 1, 0) as newv
will give result
value newv
2 0
3 0
5 0
#error
8 1
#error
7 1
I do not want error to be three, I want it to be 0 or missing. how can i do that? Thank you very much.
Jeff
table1
value
2
3
5
8
7
the code iff(clng(value)>5, 1, 0) as newv
will give result
value newv
2 0
3 0
5 0
#error
8 1
#error
7 1
I do not want error to be three, I want it to be 0 or missing. how can i do that? Thank you very much.
Jeff