How to erase future cumulative bar lines

We want to erase the future cumulative bar line in the "Line Bar" graph, as shown in the image.
Could you please tell us how to achieve this ?
Best Answer
-
You could control this by creating a beast mode for your bar values where it checks to see if the date is beyond today and make it zero or blank if it is, otherwise use the value. Something like this:
CASE WHEN `Date` < CURRENT_DATE() THEN `barvaluefield` ELSE '' END
Hope this helps.
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.1
Answers
-
You could control this by creating a beast mode for your bar values where it checks to see if the date is beyond today and make it zero or blank if it is, otherwise use the value. Something like this:
CASE WHEN `Date` < CURRENT_DATE() THEN `barvaluefield` ELSE '' END
Hope this helps.
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.1 -
Thank you for answering!
We have successfully eliminated the future cumulative bar graph with the script you gave us for a simple graph with one series.
However, it did not work for multiple series.
We would like to know how to solve the problem when the "Number of Running Total Lines" and "Number of Running Total Bars" are set up with more than one as shown in the figure.
Thank you in advance.
0 -
If you want to prevent all lines and bar from showing future dates, you can create a similar beast mode and add it to your filters like this:
- CASE WHEN `Date` < CURRENT_DATE() THEN 'Historical'
- ELSE 'Future'
- END
Drag this beast mode into your filters and filter to Historical. This will keep your chart from showing any future data.
If you want some metrics to show future and not others, then you would need to create a beast mode for each metric like the one I first gave you. If you have 12 out of 15 fields, for example, that you don't want to show future values for, you would need to create 12 different beast modes.
Hope that helps.
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.1 -
Thank you for answering!
I'll give it a try!
0 -
Please let me know if you can help.
I have previously received the following script, but it did not work when I wanted to display by weeks.
Can you please tell me what script to use to display the week by week?
- CASE WHEN `Date` < CURRENT_DATE() THEN `barvaluefield`
- ELSE ''
- END
0
Categories
- All Categories
- 1.9K Product Ideas
- 1.9K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 306 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3K Transform
- 112 SQL DataFlows
- 649 Datasets
- 2.2K Magic ETL
- 4K Visualize
- 2.5K Charting
- 788 Beast Mode
- 78 App Studio
- 43 Variables
- 744 Automate
- 187 Apps
- 474 APIs & Domo Developer
- 67 Workflows
- 16 DomoAI
- 40 Predict
- 17 Jupyter Workspaces
- 23 R & Python Tiles
- 406 Distribute
- 117 Domo Everywhere
- 279 Scheduled Reports
- 10 Software Integrations
- 139 Manage
- 136 Governance & Security
- 8 Domo Community Gallery
- 44 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 113 Community Announcements
- 4.8K Archive