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
- 10.5K All Categories
- 5 Connect
- 915 Connectors
- 250 Workbench
- 459 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 476 Datasets
- 186 Visualize
- 250 Beast Mode
- 2.1K Charting
- 11 Variables
- 16 Automate
- 354 APIs & Domo Developer
- 88 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 245 Distribute
- 62 Domo Everywhere
- 242 Scheduled Reports
- 20 Manage
- 41 Governance & Security
- 170 Product Ideas
- 1.2K Ideas Exchange
- 10 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive