3+ Consecutive days
Comments
-
You are going to need to utilize some rank and window functions to determine if you have 3 or more consecutive dates. I would recommend using Magic ETL and the Rank & Window tile. You would use the Lag function to check for consecutive days for starters.
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.0 -
Hi @Hiraayub
You can utilize a beast mode LAG and LEAD functions to determine if it's in a 3+ day run.
LAG 1 and LEAD 1 = Day with one before and after
LAG 2 = Day with two before
LEAD2 = Day with two after
CASE WHEN (LAG(MAX(`Date`)) OVER (ORDER BY `Date`) = `Date` - INTERVAL '1' DAY AND LEAD(MAX(`Date`)) OVER (ORDER BY `Date`) = `Date` + INTERVAL '1' DAY) THEN 'INCLUDE' WHEN LAG(MAX(`Date`)) OVER (ORDER BY `Date`) = `Date` - INTERVAL '2' DAY THEN 'INCLUDE' WHEN LEAD(MAX(`Date`)) OVER (ORDER BY `Date`) = `Date` + INTERVAL '2' DAY THEN 'INCLUDE' END
Then just filter on this for any record with INCLUDE
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0 -
the problem with window functions in analyzer in this context is that you MUST show date on the axis in order for the lag function to work.
I assume you'd only want to show rows if there were 3 consecutive days of xyz status.
if my assumption is correct, you'd want to implement your lag calc in ETL so that you have a column to work with as @MarkSnodgrass suggests.
you may want to implement lag(date, 1) , lag(date, 2), lag(date, 3) and add them as columns. From there you could use datediff functions in beast mode to decide whether to display the columns or not.
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"1 -
I'm so new to this and having a hard time with lag() & lead().
Yes you have assumed it right "I assume you'd only want to show rows if there were 3 consecutive days of xyz status."
This is really helpful and helps me understand what exactly needs to be done, I will play around with this.
Thank you!
0 -
@jaeW_at_Onyx I'm not sure if I'm doing this right.
If you look at the picture on Oct 5th where it says 'Y' it shows the next 2 dates Sept 29th & Sept 28th but both of those have 'N'.
0
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 7 Cloud Amplifier
- 9 Federated
- 3.8K Transform
- 655 Datasets
- 114 SQL DataFlows
- 2.2K Magic ETL
- 811 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 80 App Studio
- 45 Variables
- 770 Automate
- 190 Apps
- 481 APIs & Domo Developer
- 76 Workflows
- 23 Code Engine
- 36 AI and Machine Learning
- 19 AI Chat
- AI Playground
- AI Projects and Models
- 17 Jupyter Workspaces
- 408 Distribute
- 119 Domo Everywhere
- 279 Scheduled Reports
- 10 Software Integrations
- 142 Manage
- 138 Governance & Security
- 8 Domo Community Gallery
- 48 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 114 Community Announcements
- 4.8K Archive