How would I filter for Order Numbers that contain UN codes? While keeping all other part numbers

Hi all,
I am trying to figure out how to do this in Analyzer via Beastmode or filter tool. I am trying to only filter/display Orders that contain a product with a UN battery code while still displaying all other items in that Order Number. I'm having a tough time finding a function that could do this. Any ideas? Thanks in advance!
Best Answers
-
Create the following beastmode:
CASE WHEN `UN Number` IS NOT NULL THEN 'Include' ELSE 'Exclude' ENDThen drag the newly created beastmode into the filter section in analyzer and filter to include "include"
If I solved your problem, please select "yes" above
0 -
I'm noticing your formula should be !='' or >=1 to get the non-empty results.
It's also possible in addition to an empty string, you could have a string comprised of white spaces, which would have a length greater than 0 and not be equal to ''
''
vs.
' '
To account for that, I think wrapping your code in TRIM() should remove any invisible extra spaces that might be in that column.
Adapting @ColemenWilson's answer, you could do something like:
CASE
WHEN `UN Number` IS NOT NULL THEN 'Include'
WHEN trim(`UN Number`) <> '' then 'Include'
ELSE 'Exclude'
END
Please 💡/💖/👍/😊 this post if you read it and found it helpful.
Please accept the answer if it solved your problem.
2
Answers
-
Create the following beastmode:
CASE WHEN `UN Number` IS NOT NULL THEN 'Include' ELSE 'Exclude' ENDThen drag the newly created beastmode into the filter section in analyzer and filter to include "include"
If I solved your problem, please select "yes" above
0 -
Hi @ColemenWilson ,
Thanks for your response. I tried that beastmode and applied it but it still displays Order Numbers that do not have UN Number. An example below:
Null fields can be tricky sometimes with our datasets. We've had to use prompts such as When UN Number = '' and when length('UN Number') < 1 as well because they can be empty strings. So I will try that.
Edit: I tried this and got the same result as before.
0 -
I'm noticing your formula should be !='' or >=1 to get the non-empty results.
It's also possible in addition to an empty string, you could have a string comprised of white spaces, which would have a length greater than 0 and not be equal to ''
''
vs.
' '
To account for that, I think wrapping your code in TRIM() should remove any invisible extra spaces that might be in that column.
Adapting @ColemenWilson's answer, you could do something like:
CASE
WHEN `UN Number` IS NOT NULL THEN 'Include'
WHEN trim(`UN Number`) <> '' then 'Include'
ELSE 'Exclude'
END
Please 💡/💖/👍/😊 this post if you read it and found it helpful.
Please accept the answer if it solved your problem.
2 -
Ah good ol' empty strings!
If I solved your problem, please select "yes" above
1
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 663 Datasets
- 119 SQL DataFlows
- 2.3K Magic ETL
- 823 Beast Mode
- Visualize
- 2.6K Charting
- 86 App Studio
- 46 Variables
- Automate
- 193 Apps
- 483 APIs & Domo Developer
- 87 Workflows
- 23 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 117 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