How to do a distinct count of a certain number of digits?

I have a column labelled "Key". I am wanting to do a group count of these as otherwise I have too many rows (in table format).
The first four numbers represent a project, I am currently doing a COUNT of these, and it comes back as 1 for each as the number is unique due to the numbers after the -.
Is there a way to do a distinct COUNT on the first four numbers only so that I can count the following numbers as 4 and not 4 individual rows?
2036-310
2036-311
2036-312
2036-313
Best Answer
-
Yes you can do it in a beastmode.
LEFT(`FSJ No.`,4)
Then bring that field into your table twice, once without modification and once as a count aggregation.
If I solved your problem, please select "yes" above
1
Answers
-
@laurenmiddleton You can do magic ETL or SQL to split the column into two columns. You can then count the column using distinct first 4 numbers using group by or maybe you can pivot the distinct 4 digits if the data is not too complex to list the all the project codes and count.
You can also create a beast mode calculation LEFT(Key
, 4) to create a key column and then perform Magic ETL 'group by' on the 'key ' column and count to reduce the rows.1 -
@art_in_sky is it possible without Magic ETL and just purely on CARD beast mode?
0 -
Yes you can do it in a beastmode.
LEFT(`FSJ No.`,4)
Then bring that field into your table twice, once without modification and once as a count aggregation.
If I solved your problem, please select "yes" above
1
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