Exclude all data from Current Month (in either Beast Mode or ETL)
My aim is to exclude all current month data.
I have tried to do this in ETL, however the date field filter doesn't appear to allow for "less than current month" - happy to take suggestions.
I have also tried in Beast Mode formula. I have successfully excluded data in other calculations using currentdate however am struggling to retain all data except for the current month.
Ideas very welcom, thanks.
Best Answer
-
Hi Jonathan,
I normally use beastmodes to apply as filters in the cards we build so that they don't show partial month, week or day data.
Notice I use `TransactionDate` as my field driver and it is present in my data set (you can replace it with your field name)
These are as follows:
As of Last Month :
CASE
WHEN (YEAR(`TransactionDate`)*100)+MONTH(`TransactionDate`)
>= (YEAR(CURRENT_DATE())*100)+MONTH(CURRENT_DATE())
THEN 'NO'
ELSE 'YES' ENDAs of Last Week:
on this one, the number 11 in the YEARWEEK function means our weeks go from sunday to saturday
(CASE
WHEN ((YEAR(`TransactionDate`)*100) + YEARWEEK(`TransactionDate`, 11))
<
((YEAR(CURRENT_DATE())*100) + YEARWEEK(CURRENT_DATE(), 11))
THEN 'YES'
ELSE 'NO' END)As of Yesterday:
CASE
WHEN `TransactionDate` = CURRENT_DATE()
THEN 'No'
ELSE 'Yes' ENDHope this helps you
Domo Arigato!
**Say 'Thanks' by clicking the thumbs up in the post that helped you.
**Please mark the post that solves your problem as 'Accepted Solution'2
Answers
-
Hi Jonathan,
I normally use beastmodes to apply as filters in the cards we build so that they don't show partial month, week or day data.
Notice I use `TransactionDate` as my field driver and it is present in my data set (you can replace it with your field name)
These are as follows:
As of Last Month :
CASE
WHEN (YEAR(`TransactionDate`)*100)+MONTH(`TransactionDate`)
>= (YEAR(CURRENT_DATE())*100)+MONTH(CURRENT_DATE())
THEN 'NO'
ELSE 'YES' ENDAs of Last Week:
on this one, the number 11 in the YEARWEEK function means our weeks go from sunday to saturday
(CASE
WHEN ((YEAR(`TransactionDate`)*100) + YEARWEEK(`TransactionDate`, 11))
<
((YEAR(CURRENT_DATE())*100) + YEARWEEK(CURRENT_DATE(), 11))
THEN 'YES'
ELSE 'NO' END)As of Yesterday:
CASE
WHEN `TransactionDate` = CURRENT_DATE()
THEN 'No'
ELSE 'Yes' ENDHope this helps you
Domo Arigato!
**Say 'Thanks' by clicking the thumbs up in the post that helped you.
**Please mark the post that solves your problem as 'Accepted Solution'2 -
@jonathanlooker, did @Godiepi's reply help you out?
0 -
Worked as intended as a filter, thank you very much
1 -
If the graph showing the past 3 months data, but I want to exclude some data from the current month?
0
Categories
- All Categories
- 1.7K Product Ideas
- 1.7K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 292 Workbench
- 4 Cloud Amplifier
- 8 Federated
- 2.8K Transform
- 95 SQL DataFlows
- 600 Datasets
- 2.1K Magic ETL
- 3.7K Visualize
- 2.4K Charting
- 685 Beast Mode
- 43 App Studio
- 38 Variables
- 656 Automate
- 170 Apps
- 439 APIs & Domo Developer
- 42 Workflows
- 5 DomoAI
- 32 Predict
- 12 Jupyter Workspaces
- 20 R & Python Tiles
- 384 Distribute
- 110 Domo Everywhere
- 268 Scheduled Reports
- 6 Software Integrations
- 111 Manage
- 108 Governance & Security
- 8 Domo University
- 25 Product Releases
- Community Forums
- 39 Getting Started
- 29 Community Member Introductions
- 98 Community Announcements
- Domo Community Gallery
- 4.8K Archive