Multiple Case When Statements
I am trying to build a multiple case when statement but can't seem to get it to work. I want to show revenue buckets by either the Owner's name (for specific named users), 'CSG' for specific named users and then "No current sales rep" for all other users (the ELSE part). This is what I have so far:
CASE WHEN `Owner.Name` = 'Name 1' OR
`Owner.Name` = 'Name 2' OR
`Owner.Name` = 'Name 3'
THEN
`Owner.Name`
CASE WHEN `Owner.Name` = 'Name 4' OR
`Owner.Name` = 'Name 5' OR
`Owner.Name` = 'Name 6' OR
`Owner.Name` = 'Name 7' OR
THEN
'CSG'
ELSE
'No Current Sales Rep'
END
Comments
-
You were close. Just a couple syntax changes. Change the OR to an IN statement. You also had a second CASE in there that shouldn't be there. This should work for you:
CASE
WHEN `Owner.Name` IN ('Name 1','Name 2','Name 3')
THEN `Owner.Name`WHEN `Owner.Name` IN ('Name 4','Name 5','Name 6','Name 7')
THEN 'CSG'
ELSE 'No Current Sales Rep'
END**Check out my Domo Tips & Tricks Videos
**Make sure to any users posts that helped you.
**Please mark as accepted the ones who solved your issue.1
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 738 Beast Mode
- 57 App Studio
- 40 Variables
- 685 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 47 Workflows
- 10 DomoAI
- 36 Predict
- 15 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 124 Manage
- 121 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive