SOLVED
Formula component - OR
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Alex_A
7 - Meteor
‎12-11-2017
12:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
HI, I am trying to use an OR operator with a field formula i.e. - IF [SDLNTY]="CN,DN" THEN 0 ELSE [SDSOQS] ENDIF = So if the reference column(SDLNTY) contains the string CN Or the string DN then the new field value should be 0 Otherwise it should show SDSOQS column.
I'm guessing this should be fairly straightforward but I wasn't able to find it out so far.
Appreciate the help!
Solved! Go to Solution.
Labels:
- Labels:
- Preparation
1 REPLY 1
vishwa_0308
11 - Bolide
‎12-11-2017
12:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Please try this :
IF [SDLNTY] in ("CN","DN") THEN "0" ELSE [SDSOQS] ENDIF
Vishwa
