Combine columns except when null (i.e., skip null)
Hi there,
Is there a way to combine values in multiple columns except when the value is null? For example:
This is a small example, I need to combine 8 different columns with a separator without ending up with: cat, , , , , orange, .
I'm essentially looking for a DOMO equivalent of TEXTJOIN() in Excel. The values don't always inform each other i.e., the sixth column may not be null while the third column may be null.
Thank you in advance!
Best Answers
-
My solution is kind of a work-around but the basic idea is to use a delimiter to combine the columns and remove them later on:
- Add a comma (or another delimiter) to the end of each text column that need to be combined (e.g., cat --> cat,)
- Combine the columns (will look something like cat,dog,,,bird,,)
- Replace text LIKE ',,%' with ','
- Replace ',' (or comma no space) with ', ' (or comma with space)
- Remove last char
1 -
you could also try a formula tile to combine:
CASE WHEN `column A` IS NULL THEN `column B` WHEN `column B` IS NULL THEN `column A` ELSE CONCAT(`column A`, ', ', `column B`) END
... Sorry, just re-read your entire post and I noticed that you are combining 8 fields.
CONCAT(CASE WHEN `column A` is NULL then '' else concat(`column A`,', ') end, CASE WHEN `column B` is NULL then '' else concat(`column B`,', ') end, CASE WHEN `column C` is NULL then '' else concat(`column C`,', ') end, CASE WHEN `column D` is NULL then '' else concat(`column D`,', ') end, CASE WHEN `column E` is NULL then '' else concat(`column E`,', ') end, CASE WHEN `column F` is NULL then '' else concat(`column F`,', ') end, CASE WHEN `column G` is NULL then '' else concat(`column G`,', ') end, CASE WHEN `column H` is NULL then '' else concat(`column H`,', ') end )
3
Answers
-
Hi @tlammie1806, an option that could get it closer to your desired state is using CONCAT function, to combine data, as well as a RegEx (e.g. /s), to remove any blank/white spaces. Unfortunately, there isn't an equivalent of TEXTJOIN in Domo currently
0 -
My solution is kind of a work-around but the basic idea is to use a delimiter to combine the columns and remove them later on:
- Add a comma (or another delimiter) to the end of each text column that need to be combined (e.g., cat --> cat,)
- Combine the columns (will look something like cat,dog,,,bird,,)
- Replace text LIKE ',,%' with ','
- Replace ',' (or comma no space) with ', ' (or comma with space)
- Remove last char
1 -
you could also try a formula tile to combine:
CASE WHEN `column A` IS NULL THEN `column B` WHEN `column B` IS NULL THEN `column A` ELSE CONCAT(`column A`, ', ', `column B`) END
... Sorry, just re-read your entire post and I noticed that you are combining 8 fields.
CONCAT(CASE WHEN `column A` is NULL then '' else concat(`column A`,', ') end, CASE WHEN `column B` is NULL then '' else concat(`column B`,', ') end, CASE WHEN `column C` is NULL then '' else concat(`column C`,', ') end, CASE WHEN `column D` is NULL then '' else concat(`column D`,', ') end, CASE WHEN `column E` is NULL then '' else concat(`column E`,', ') end, CASE WHEN `column F` is NULL then '' else concat(`column F`,', ') end, CASE WHEN `column G` is NULL then '' else concat(`column G`,', ') end, CASE WHEN `column H` is NULL then '' else concat(`column H`,', ') end )
3
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
- 768 Beast Mode
- 70 App Studio
- 43 Variables
- 717 Automate
- 185 Apps
- 462 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