Domo Beast Mode/Data Flow
Hello,
I currently have a column in my data set that is numerical called "session duration" with values ranging from 0 to 45,000 (in seconds). I want to be able to create a new column that does value mapping for values > 10 to be identified as "Greater than 10" and values < 10 to be identified as "Less than 10". Currently, I am able to do this using this formula:
(CASE
WHEN `Session Duration` > 10 THEN 'GTHEN'
ELSE 'LTHEN'
END)
Now I would like to use this calculation to return the % of total for each the count of category, so a pivot table would show me the % of total of gthen/lthen per month of the year.
Best Answer
-
In addition to what @NewsomSolutions said, if doing it in a table or pivote table you might be able to leverage a formula like this.
SUM((CASE
WHEN `Session Duration` > 10 THEN 1
ELSE 0
END))/
COUNT(`ID`)
I'm not sure exactly what sort of "Categories" you're talking about because you don't really mention it but here's an example where we have durations stats and each row pertains to a color. The calculation shows that when the category is "Blue" the session duration is over 10 60% of the time (3/5), when the category is "Red" the session duration is over 10 40% of the time (2/5).
Test Dataset
**Make sure to like any users posts that helped you and accept the ones who solved your issue.**1
Answers
-
I'm guessing you're asking how to do this? One way you could do it is use a single bar chart, then in the data label settings use the percent of total macro to show % that is gthen and % that is lthen from the total.
1 -
In addition to what @NewsomSolutions said, if doing it in a table or pivote table you might be able to leverage a formula like this.
SUM((CASE
WHEN `Session Duration` > 10 THEN 1
ELSE 0
END))/
COUNT(`ID`)
I'm not sure exactly what sort of "Categories" you're talking about because you don't really mention it but here's an example where we have durations stats and each row pertains to a color. The calculation shows that when the category is "Blue" the session duration is over 10 60% of the time (3/5), when the category is "Red" the session duration is over 10 40% of the time (2/5).
Test Dataset
**Make sure to like any users posts that helped you and accept the ones who solved your issue.**1 -
@user16945 were you able to sort this out?
**Make sure to like any users posts that helped you and accept the ones who solved your issue.**0 -
yes
1 -
If one of use provided the correct solution can you mark it as the solution, if not can you post what you did to resolve it and mark it as the solution so other people who stumble across this can see what resolved it if they have a similar issue? Glad to hear you figured it out.
**Make sure to like any users posts that helped you and accept the ones who solved your issue.**0
Categories
- 10.5K All Categories
- 7 Connect
- 917 Connectors
- 250 Workbench
- 465 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 477 Datasets
- 193 Visualize
- 252 Beast Mode
- 2.1K Charting
- 11 Variables
- 17 Automate
- 354 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 246 Distribute
- 62 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 173 Product Ideas
- 1.2K Ideas Exchange
- 12 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive