Is there a way to "filter" or hide some elements of a visualization without filtering the underlying data?
This matters when running calculations are used.
Say I have column Date with values December 1, 2,3 with Revenue 10, 30, 20
I create a running total Revenue column, but I only want to keep the first and the last date for example:
Date_______To_Date_Revenue
12/01_______10
12/03_______60
If I simply use Date to filter out 12/02, the chart becomes
Date_______To_Date_Revenue
12/01_______10
12/03_______30