Trying to hide past months for one value in a beastmode
I am trying to use our actuals to track past month/current value and our forecast to use future month value and I am having trouble writing the beat mode to do this.
CASE WHEN YEAR(`Period Date`) <= YEAR(CURDATE()) AND MONTH(`Period Date`) <= MONTH(CURDATE())
THEN 'Hide Future Months'
ELSE 'Show Future Months'
END
Here is the SQL to hide future months for all values in the card but is there a way to hide past months for one particular value? the value I am trying to hide for past months is just named 'value' in the dataset.
Thanks
Answers
-
You can use a case statement to conditionally return a value or NULL if it doesn't match the logical expression.
Something like:
CASE WHEN LAST_DAY(`Period Date`) <= LAST_DAY(CURDATE()) THEN `Value` END
You can then use this beast mode in place of your original value.
I'm using LAST_DAY to return the last day of the month to simplify checking for future dates instead of having to check for the year and the month separately. With your current logic it appears exclude December of last year as 2021 is <= 2022 and 8 <= 12. Typically going this route you'd need to check for the year being before this year OR (the years are the same AND the month comes before this month) to include, or alternatively just use LAST_DAY.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3.8K Transform
- 660 Datasets
- 117 SQL DataFlows
- 2.2K Magic ETL
- 816 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 84 App Studio
- 46 Variables
- 778 Automate
- 190 Apps
- 482 APIs & Domo Developer
- 83 Workflows
- 23 Code Engine
- 41 AI and Machine Learning
- 20 AI Chat
- 1 AI Playground
- 2 AI Projects and Models
- 18 Jupyter Workspaces
- 412 Distribute
- 120 Domo Everywhere
- 281 Scheduled Reports
- 11 Software Integrations
- 145 Manage
- 141 Governance & Security
- 8 Domo Community Gallery
- 48 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 115 Community Announcements
- 4.8K Archive