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.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 738 Beast Mode
- 56 App Studio
- 40 Variables
- 685 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 47 Workflows
- 10 DomoAI
- 36 Predict
- 15 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 124 Manage
- 121 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive