Cumulative total of users with activity date
I need want to see how many active users we have over time. I have a field "last_activity_at", if it has a value (not null) they are active. And I want to add the sum total of active dates in the week they fall.
I was able to accomplish this somewhat in beast most, but I think I need to use etl to filter out duplicate weeks...
CASE
WHEN ifnull(`last_activity_at`,0)=0
THEN 'Is null'
ELSE SUM(SUM(1)) OVER (ORDER BY (DATE_FORMAT(`last_activity_at`,'%Y-%m-%d')))
END
Comments
-
There's a bunch going on here ...
1) why are you building a CASE statement that returns text when your ELSE clause will return a number?
2) if I had to guess you have Date on the axis hence why you're seeing repeated dates. swap it with the math in your order by clause, DATE_FORMAT(`last_activity_at`,'%Y-%m-%d')
3) if you still need a CASE Statement, it has to be executed inside the window function.
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Categories
- 7.7K All Categories
- 5 Connect
- 921 Connectors
- 244 Workbench
- 477 Transform
- 1.8K Magic ETL
- 60 SQL DataFlows
- 446 Datasets
- 40 Visualize
- 199 Beast Mode
- 2K Charting
- 8 Variables
- 1 Automate
- 348 APIs & Domo Developer
- 82 Apps
- Workflows
- 14 Predict
- 3 Jupyter Workspaces
- 11 R & Python Tiles
- 241 Distribute
- 59 Domo Everywhere
- 241 Scheduled Reports
- 15 Manage
- 36 Governance & Security
- 28 Product Ideas
- 1.1K Ideas Exchange
- Community Forums
- 14 Getting Started
- 1 Community Member Introductions
- 49 Community News
- 18 Event Recordings
- 579 日本支部