How can I change a cell that has not data to say "none?"
Hello, I have data set that I used the split column in magic ETL. If the column has a blank cell, I want it to say none. Is this possible in ETL or a beast mode? Below is the example, where there is yellow (credit type 2), I want it to say none.
Best Answers
-
case when `Credit Type 2` is null then 'none' else `Credit Type 2` end
enter this formula into a formula tile in magic etl. this can also be done in a beastmode.
1 -
The empties may be coming into Domo as nulls, but they may also be empty strings (which is different from null). In some cases they could even be strings with "whitespace" characters in them like spaces, though that is only likely if the source of the data is subject to human mistakes.
Use an Add Formula tile and name the formula Credit Type 2 (the name will become italicized to let you know it is overwriting an existing column). Then write the formula, for handling nulls:
IFNULL(`Credit Type 2`, 'none')
Or, to handle both nulls and empty strings:
IFNULL(NULLIF(`Credit Type 2`, ''), 'none')
And finally, to handle nulls, empty strings, or blank strings:
IFNULL(NULLIF(SQUASH_WHITESPACE(`Credit Type 2`), ''), 'none')
Note that this last formula will also remove any leading or trailing spaces from your non-empty values, and collapse any other repeated spaces into one.Randall Oveson <randall.oveson@domo.com>
0
Answers
-
case when `Credit Type 2` is null then 'none' else `Credit Type 2` end
enter this formula into a formula tile in magic etl. this can also be done in a beastmode.
1 -
The empties may be coming into Domo as nulls, but they may also be empty strings (which is different from null). In some cases they could even be strings with "whitespace" characters in them like spaces, though that is only likely if the source of the data is subject to human mistakes.
Use an Add Formula tile and name the formula Credit Type 2 (the name will become italicized to let you know it is overwriting an existing column). Then write the formula, for handling nulls:
IFNULL(`Credit Type 2`, 'none')
Or, to handle both nulls and empty strings:
IFNULL(NULLIF(`Credit Type 2`, ''), 'none')
And finally, to handle nulls, empty strings, or blank strings:
IFNULL(NULLIF(SQUASH_WHITESPACE(`Credit Type 2`), ''), 'none')
Note that this last formula will also remove any leading or trailing spaces from your non-empty values, and collapse any other repeated spaces into one.Randall Oveson <randall.oveson@domo.com>
0 -
Thank you!
0
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.8K Visualize
- 2.5K Charting
- 737 Beast Mode
- 56 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 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