Beast Mode for Count Distinct with Condition
I want to get count of values in a column based on a condition for another column:
Example:
Count(Distinct 'visitor_id' ) where visitor_called = 'Y'
The above give me a syntax error.
Trying with 'Case':
(CASE
WHEN `visitor_called` = 'Y' then COUNT(DISTINCT `visitor_id`)
else '0'
END
)
This returns me overall counf for distinct visitor ID but not for condition specified.
Any help would be appreciated.
Best Answer
-
Hi, user03295,
You very nearly had it right. Try wrapping your entire case statement in the count distinct function:
count(distinct
CASE
WHEN `visitor_called` = 'Y' then `visitor_id`
-- note I'm NOT using the "else" portion of the case statement. That's because, if `visitor_called` is not 'Y', then I want the case statement to return NULL. NULL is not included in aggregate functions like count()
END
)5
Answers
-
Hi, user03295,
You very nearly had it right. Try wrapping your entire case statement in the count distinct function:
count(distinct
CASE
WHEN `visitor_called` = 'Y' then `visitor_id`
-- note I'm NOT using the "else" portion of the case statement. That's because, if `visitor_called` is not 'Y', then I want the case statement to return NULL. NULL is not included in aggregate functions like count()
END
)5 -
That worked like a charm ! ? Thank you
0 -
Hello.
If we didn't specify the visitor_called, but wanted to count all unique visitor_ids for each visitor_called, any idea how we could do that in Beast Mode?
Will be of great help. I'm going through a similar issue.
0 -
@hamza_123 If my understanding is correct, your requirement is to see the count of distinct visitorIds for each available value of visitor_called (yes, no, etc.)
In that case, build a simple calculated metric with definition count(distinct visitor_ID) and apply it on the graph/table for the visitor_called.
Example: if on a horizontal bar graph,pull visitor_called on x-axis and calculated metric on y-axis.
Let me know if my understanding is incorrect. In that case, a sample of available data and required data would help.
1 -
That worked out! Thank you very much.
0
Categories
- All Categories
- Product Ideas
- 2K Ideas Exchange
- Connect
- 1.3K Connectors
- 308 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 661 Datasets
- 117 SQL DataFlows
- 2.2K Magic ETL
- 819 Beast Mode
- Visualize
- 2.6K Charting
- 85 App Studio
- 46 Variables
- Automate
- 193 Apps
- 483 APIs & Domo Developer
- 85 Workflows
- 23 Code Engine
- AI and Machine Learning
- 22 AI Chat
- 3 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 116 Domo Everywhere
- 282 Scheduled Reports
- 11 Software Integrations
- Manage
- 142 Governance & Security
- 9 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 115 Community Announcements
- 5K Archive