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
- 292 Workbench
- 4 Cloud Amplifier
- 8 Federated
- 2.8K Transform
- 95 SQL DataFlows
- 603 Datasets
- 2.1K Magic ETL
- 3.7K Visualize
- 2.4K Charting
- 697 Beast Mode
- 43 App Studio
- 39 Variables
- 658 Automate
- 170 Apps
- 441 APIs & Domo Developer
- 42 Workflows
- 5 DomoAI
- 32 Predict
- 12 Jupyter Workspaces
- 20 R & Python Tiles
- 386 Distribute
- 111 Domo Everywhere
- 269 Scheduled Reports
- 6 Software Integrations
- 113 Manage
- 110 Governance & Security
- 8 Domo University
- 30 Product Releases
- Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 98 Community Announcements
- Domo Community Gallery
- 4.8K Archive