Business/working days MTD vs. Prior Months
Hello All,
I am trying to figure out how to a MTD comparison between current month and prior months.
I want to compare my February MTD results the the prior months results assuming they were at the same MTD period as my current month. Hence if I am only at the 10 business day of the current month then I want to see where I was at on the 10th business day of prior months.
Im not sure if it should done this in the ETL or beast mode, any help would be great.
Comments
-
The way we went about solving that here was to first create a table of "Business days of months" for large timeframe (ie, 2010-2200), as long as you have a way to reference what business day each day actually was/will be.
I then created an ETL using multiple left joins to my data using that date range to create "working day of month" for each date i care about.
SELECT a.*, b.`WorkingDayOfMonth` AS 'LeadWDOM', c.`WorkingDayOfMonth` AS 'CloseWDOM', (SELECT d.`WorkingDayOfMonth` FROM daterange as D WHERE d.`Date` = CURRENT_DATE()) AS 'CurrentWDOM'
FROM dataset as a
LEFT JOIN daterange as b ON a.`Lead Date` = b.`Date`
LEFT JOIN daterange as c ON a.`Close Date` = c.`Date`
From that transform you can then create beastmodes where my CASE WHEN statements check to make sure the dates I'm checking in previous months are <= my 'CurrentWDOM' column.
I know that was a very high level overview, if you need me to go into more detail just let me know what you need more help on.
Sincerely,
ValiantSpur**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.1
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.6K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 2.9K Transform
- 102 SQL DataFlows
- 626 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 753 Beast Mode
- 61 App Studio
- 41 Variables
- 692 Automate
- 177 Apps
- 456 APIs & Domo Developer
- 49 Workflows
- 10 DomoAI
- 38 Predict
- 16 Jupyter Workspaces
- 22 R & Python Tiles
- 398 Distribute
- 115 Domo Everywhere
- 276 Scheduled Reports
- 7 Software Integrations
- 130 Manage
- 127 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 11 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 110 Community Announcements
- 4.8K Archive