Returning all the same value.
I got this code to work, well kind of. Its only returning 110
CASE
When Actual bid 2
>2700 THEN 120
When (model
LIKE '%250%' OR '%2500%' OR '%350%' OR '%3500%') THEN 110
ELSE 110
END
Tried this
CASE
When Actual bid 2
>2700 AND model
LIKE '%250%' OR '%2500%' OR '%350%' OR '%3500%' THEN 110
when 'actual bid 2' <=2700 then 110
When (model
LIKE '%250%' OR '%2500%' OR '%350%' OR '%3500%') THEN 110
ELSE 120
END
tried a few others as well and can't seem to get it to work. I made verifier columns to make sure the individual segments work and they do but I can't get them to go together into one.
UPDATE: The portion not working currently is as follows
WHEN
`YMM`IN ('%F 250%')
OR 'YMM' IN ('%F-250%')
OR 'YMM' IN ('%F250%')
OR 'YMM' IN ('%F-350%')
OR 'YMM' IN ('%F350%')
OR 'YMM' IN ('%F 350%')
OR 'YMM' IN ('%F 250%')
OR 'YMM' IN ('%3500%')
OR 'YMM' IN ('%2500%')
THEN 110
I'm trying to find YMM that contains those values. I made a second column with 1/0 output and got nothing but 0's on all vehicles. Even those that contain these values.
Best Answer
-
@Liv_Stearns When trying to match multiple patterns, you will need to repeat the LIKE statement each time. So instead of this:
When (`model` LIKE '%250%' OR '%2500%' OR '%350%' OR '%3500%') THEN 110
You will need to structure your conditions like this:
When (`model` LIKE '%250%' OR `model` LIKE '%2500%' OR `model` LIKE '%350%' OR `model` LIKE '%3500%') THEN 110
1
Answers
-
@Liv_Stearns When trying to match multiple patterns, you will need to repeat the LIKE statement each time. So instead of this:
When (`model` LIKE '%250%' OR '%2500%' OR '%350%' OR '%3500%') THEN 110
You will need to structure your conditions like this:
When (`model` LIKE '%250%' OR `model` LIKE '%2500%' OR `model` LIKE '%350%' OR `model` LIKE '%3500%') THEN 110
1
Categories
- All Categories
- 1.7K Product Ideas
- 1.7K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 294 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.8K Transform
- 97 SQL DataFlows
- 607 Datasets
- 2.1K Magic ETL
- 3.8K Visualize
- 2.4K Charting
- 707 Beast Mode
- 49 App Studio
- 39 Variables
- 667 Automate
- 170 Apps
- 446 APIs & Domo Developer
- 44 Workflows
- 7 DomoAI
- 33 Predict
- 13 Jupyter Workspaces
- 20 R & Python Tiles
- 391 Distribute
- 111 Domo Everywhere
- 274 Scheduled Reports
- 6 Software Integrations
- 115 Manage
- 112 Governance & Security
- Domo Community Gallery
- 31 Product Releases
- 9 Domo University
- 5.3K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 103 Community Announcements
- 4.8K Archive