Beastmode Percentage Calculation
Best Answer
-
So there are two ways to do this, the first way would be to add a subtotal to your table card. It would look something like the picture attached. The second way would be to create a new aggregate column. Something like ...
select Campaign
,count(distinct id) as campaign_total
from yourTable
group by CampaignThen you would join this to your campaign rows on Campaign in your main table and create a beastmode like ...
COUNT(DISTINCT CASE WHEN `Campaign` = 'A' THEN `ID` END)
/
MAX(campaign_total)Hope this helps,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0
Answers
-
Hi,
I am not entirely sure what you are trying to accomplish here. Can you elaborate, maybe providing some examples with numbers?
Thanks,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Hi,
This beastmode is how i'm getting the metric for active campaigns.
COUNT(DISTINCT (CASE WHEN `Campaign` = 'A' THEN `ID` END))
the output is the attachment below.
I'd like to take the percentage of each row after summing the entire active campaigns column.
For Auto/dealer, I'd like 724.4/2088.6 = 34.6%
Hopefully that helps!
0 -
So there are two ways to do this, the first way would be to add a subtotal to your table card. It would look something like the picture attached. The second way would be to create a new aggregate column. Something like ...
select Campaign
,count(distinct id) as campaign_total
from yourTable
group by CampaignThen you would join this to your campaign rows on Campaign in your main table and create a beastmode like ...
COUNT(DISTINCT CASE WHEN `Campaign` = 'A' THEN `ID` END)
/
MAX(campaign_total)Hope this helps,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0
Categories
- 10.5K All Categories
- 5 Connect
- 915 Connectors
- 250 Workbench
- 459 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 476 Datasets
- 185 Visualize
- 250 Beast Mode
- 2.1K Charting
- 11 Variables
- 16 Automate
- 354 APIs & Domo Developer
- 88 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 245 Distribute
- 62 Domo Everywhere
- 242 Scheduled Reports
- 20 Manage
- 41 Governance & Security
- 170 Product Ideas
- 1.2K Ideas Exchange
- 10 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive