SOLVED
IF THEN ELSE ENDIF Formula
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
TonyNeari1304
5 - Atom
‎08-01-2023
11:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
If [Customer] = "JV Pools & Spas, Inc. (Bill Direct)" OR "United Aqua Group - JV Pools & Spas, Inc" THEN "Combo2" ELSE "" ENDIF
Trying to create a new column that puts an indicator for specific customers, but it only places the indicator for the first customer. Any thoughts on how I can get the indicator for both customer names?
Trying to create a new column that puts an indicator for specific customers, but it only places the indicator for the first customer. Any thoughts on how I can get the indicator for both customer names?
Solved! Go to Solution.
Labels:
- Labels:
- Best Practices
3 REPLIES 3
geraldo
13 - Pulsar
‎08-01-2023
12:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
If [Customer] = "JV Pools & Spas, Inc. (Bill Direct)" OR [Customer] = "United Aqua Group - JV Pools & Spas, Inc" THEN "Combo2" ELSE "" ENDIF
apathetichell
20 - Arcturus
‎08-01-2023
12:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hypothetically if yo uhave enough ors to get this to be uweildy - you can bunch them together using an instatement where each term is seperated by a comma.
If [Cusotmer] in ("Jv Pools & Spas, Inc. (Bill Direct)","United Aquia Group - JV Pools & Spas, Inc") then "Combo2" else "" endif
‎08-15-2023
01:53 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you for the help on this!
