Failed to Convert Value from String Type to Boolean
Hi!
I'm trying to setup a formula in my ETL where when the Registration Date is greater than 06/22/2021 we get the Order Item including the nulls. Before that date, I need the formula to include all order items but instead of nulls, I need it to say 'No Order Item'.
So it would look like this originally.
Registration Date | Order Item |
---|---|
1/1/2020 | |
2/2/2020 | 1234 |
7/1/2021 | |
9/1/2023 | 5678 |
After the formula
Registration Date | Order Item |
---|---|
1/1/2020 | No Order Item |
2/2/2020 | 1234 |
7/1/2021 | |
9/1/2023 | 5678 |
case when Registration Date
< 06/22/2021 then Order Item
when Registration Date
<= 06/22/2021 and IFNULL(Order Item
) then 'No Order Item' else Order Item
end
The formula seems to work except for the error message. I tried concating the order item and tried to use IN, but that didn't work.
Thanks for your help!
Best Answer
-
@Cfunk here you go. A couple of issues with your original beast mode.
- You needed to wrap your date string inside of DATE() to convert from string type to date type.
- IFNULL() requires 2 arguments, something to check if null, and a replacement string.
Updated Beast Mode
CASE
WHEN Registration Date < DATE('2021-06-22') then IFNULL(Order Item,'No Order Item')
else Order Item
ENDExample output
David Cunningham
** Was this post helpful? Click Agree 😀, Like 👍️, or Awesome ❤️ below **
** Did this solve your problem? Accept it as a solution! ✔️**1
Answers
-
@Cfunk here you go. A couple of issues with your original beast mode.
- You needed to wrap your date string inside of DATE() to convert from string type to date type.
- IFNULL() requires 2 arguments, something to check if null, and a replacement string.
Updated Beast Mode
CASE
WHEN Registration Date < DATE('2021-06-22') then IFNULL(Order Item,'No Order Item')
else Order Item
ENDExample output
David Cunningham
** Was this post helpful? Click Agree 😀, Like 👍️, or Awesome ❤️ below **
** Did this solve your problem? Accept it as a solution! ✔️**1
Categories
- All Categories
- 1.9K Product Ideas
- 1.9K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 303 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 2.9K Transform
- 104 SQL DataFlows
- 640 Datasets
- 2.2K Magic ETL
- 4K Visualize
- 2.5K Charting
- 767 Beast Mode
- 70 App Studio
- 43 Variables
- 716 Automate
- 185 Apps
- 461 APIs & Domo Developer
- 56 Workflows
- 14 DomoAI
- 39 Predict
- 16 Jupyter Workspaces
- 23 R & Python Tiles
- 402 Distribute
- 116 Domo Everywhere
- 277 Scheduled Reports
- 9 Software Integrations
- 134 Manage
- 131 Governance & Security
- 8 Domo Community Gallery
- 44 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 111 Community Announcements
- 4.8K Archive