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
- 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