robertthomas
Technical User
Ok, here's my problem. I want to look at 2 columns, COL1 and COL2. If either of them have number 3 or greater, then I would like my new COL3 to display "Level 2". If COL1 and COL2 are less than 3 but greater than 0, then COL3 should say, "Level 1". If COL1 and COL2 say 0, then it should display "Level 0." If anything else, than blank.
Below is my attempt at this:
COL3:IIf([COL1] Or [COL2]>=3,"Level 1",IIf(([COL1] And [COL2]<3) And ([COL1] Or [COL2]>0),"Level 2",IIf([COL1] Or [COL2]=0,"Level 0","")))
Any help would be greatly appreciated.
Robert Thomas
Below is my attempt at this:
COL3:IIf([COL1] Or [COL2]>=3,"Level 1",IIf(([COL1] And [COL2]<3) And ([COL1] Or [COL2]>0),"Level 2",IIf([COL1] Or [COL2]=0,"Level 0","")))
Any help would be greatly appreciated.
Robert Thomas