Previous Validated Formula now Domo is not accepting

KelNavarro_1206
Member
in Beast Mode
Please help: I have a beastmode calculation setup before that creates a Date using month number but now Domo is not accepting it.
Here is the formula:
DATE(CASEWHEN LENGTH(`Month Number`)=1 THEN CONCAT(`Year`,'-0',`Month Number`,'-01')ELSE CONCAT(`Year`,'-',`Month Number`,'-01') END)
This is the error message that I am receiving:
0
Answers
-
It looks like your Month Number is "0" and that's what's causing the issue. Do you see any records in your data that might have a Month Number = 0?
0 -
I concur with @ggenovese. Your month number zero is producing invalid values.
DATE(CASE
WHEN LENGTH(`Month Number`) = 1 THEN
CASE
WHEN `Month Number` BETWEEN '1' AND '9' THEN CONCAT(`Year`, '-0', `Month Number`, '-01')
ELSE NULL
END
WHEN LENGTH(`Month Number`) = 2 THEN
CASE
WHEN `Month Number` BETWEEN '10' AND '12' THEN CONCAT(`Year`, '-', `Month Number`, '-01')
ELSE NULL
END
ELSE NULL
END)** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 664 Datasets
- 120 SQL DataFlows
- 2.3K Magic ETL
- 825 Beast Mode
- Visualize
- 2.6K Charting
- 88 App Studio
- 46 Variables
- Automate
- 195 Apps
- 486 APIs & Domo Developer
- 94 Workflows
- 24 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 119 Domo Everywhere
- 283 Scheduled Reports
- 11 Software Integrations
- Manage
- 143 Governance & Security
- 11 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 116 Community Announcements
- 5K Archive