M
mareo
I have a table that have the following fields:
ID Conc
Test1 1
Test2 5
Test3 10
Test4 15
Test1 2
Test2 2
Test4 9
I want a statement that look like this:
If Test1 < 2 then PLace "nd" in [new field]
If Test2 < 1.5 then place "nd" in [new field]
If Test3 < 1 then place "nd" in [new field]
If Test4 < 10 then place "nd" in [new field]
The resulted table should look like this.
ID Conc newfield
Test1 1 "nd"
Test2 5
Test3 10
Test4 15
Test1 2
Test2 2 "nd"
Test4 9 "nd"
How can I accomplish this task?
Thanks
ID Conc
Test1 1
Test2 5
Test3 10
Test4 15
Test1 2
Test2 2
Test4 9
I want a statement that look like this:
If Test1 < 2 then PLace "nd" in [new field]
If Test2 < 1.5 then place "nd" in [new field]
If Test3 < 1 then place "nd" in [new field]
If Test4 < 10 then place "nd" in [new field]
The resulted table should look like this.
ID Conc newfield
Test1 1 "nd"
Test2 5
Test3 10
Test4 15
Test1 2
Test2 2 "nd"
Test4 9 "nd"
How can I accomplish this task?
Thanks