Choosing first and last month in BM
Is there a way to use fixed functions or something else to grab the first date that appears and the last date that appears?
I am trying to calculate yearly attrition. I have it by month but adding up or avg the monthly % is not mathematically correct. I need to get the first month and last month's values within a certain timeframe. I did do some hard-coded stuff in ETLs but people want to be able to choose the timeframe and other filters in order to calculate a yearly value.
Essentially I have what is below. I want to grab min month value1 and max month value 1 and add them together. After that, I would want to add up everything from value2 and then divide that by the sum of the min + max date of value 1.
Start Date End Date Value1 Value 2
1/1/22 1/31/22 500 2
2/1/22 2/28/22 510 8
3/1/22 3/31/22 505 3
4/1/22 4/30/22 507 1
Best Answer
-
Earliest date for the year
MIN(MIN(`Date`)) OVER (PARTITION BY YEAR(`Date`))
Latest date for the year
MAX(MAX(`Date`)) OVER (PARTITION BY YEAR(`Date`))
Remove the partition clause if you want it across your entire dataset.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1
Answers
-
Earliest date for the year
MIN(MIN(`Date`)) OVER (PARTITION BY YEAR(`Date`))
Latest date for the year
MAX(MAX(`Date`)) OVER (PARTITION BY YEAR(`Date`))
Remove the partition clause if you want it across your entire dataset.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1 -
Thank you @GrantSmith exactly what I needed!
0 -
@GrantSmith so I am able to use those calculations separately but when I try to add them together in the same BM it does the weird blank error thing.
0 -
You're getting a blank because your CASE statement is likely returning a NULL value. Are you displaying you data split by anything other than Company?
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0
Categories
- 10.5K All Categories
- 8 Connect
- 918 Connectors
- 250 Workbench
- 469 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
- 247 Distribute
- 63 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