Help with Beastmode on Count with Condition
Hello, I feel like this should be a simple thing to do, but am stumped.
I am trying to do a count of order numbers where there is a condition to be met. Is there a if function that I can follow to do this?
For example, there is a list of vendors, some of which have registered and some have not. I want to count the # of orders the vendor has for 1) if they are registered and 2) if they are not registered in two separate columns.
I tried a few things, but can't seem to get it..
1) if 'isRegistered' = 'True' then count(OrderNo)
2) case when 'isRegistered' = 'True' then count(OrderNo) else 0 end. This step kind of works but whenever 'isRegistered' = 'False', it will just display as 0.
Thank you!
Welcome!
Answers
-
Hi @user077529
You can use a CASE statement to conditionally count values in a beast mode. You're close but yours is only counting everything if isRegistered is true. You want something like this:
Registered count
- COUNT(CASE WHEN `isRegistered` = 'True' THEN `OrderNo` END)
Non-Registered.
- COUNT(CASE WHEN `isRegistered` = 'False' THEN `OrderNo` END)
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1 -
Hey Grant,
That's really helpful, thank you! Is there a way to do this if the value is null? For example...
count(case when 'isRegistered' = NULL then 'OrderNo' END)
And vice versa is there a way to count OrderNo if 'isRegistered' has ANY populated value, for example:
count(case when 'isRegistered' not NULL then "OrderNo' END)
0 -
you would do
isRegistered
IS NULL andisregistered
IS NOT NULL when evaluating nulls.**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.0
Welcome!
Welcome!
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3.8K Transform
- 659 Datasets
- 116 SQL DataFlows
- 2.2K Magic ETL
- 816 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 83 App Studio
- 46 Variables
- 777 Automate
- 190 Apps
- 481 APIs & Domo Developer
- 83 Workflows
- 23 Code Engine
- 41 AI and Machine Learning
- 20 AI Chat
- 1 AI Playground
- 2 AI Projects and Models
- 18 Jupyter Workspaces
- 411 Distribute
- 120 Domo Everywhere
- 280 Scheduled Reports
- 11 Software Integrations
- 145 Manage
- 141 Governance & Security
- 8 Domo Community Gallery
- 48 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 115 Community Announcements
- 4.8K Archive