Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
9 years ago
Solved

How to make Line Chart stop mid-graph for future dates

I've made a line chart showing 3 lines, each is a Percentage (y-axis) over Time (x-axis): 1. A "goal" line that has pre-populated data (see black line below) 2. Two data lines showing progress rela...
  • Reid_Havens's avatar
    9 years ago

    Hi Jason,

     

    Happy to help. If this is a numerical column then you might want to try using the BLANK() function. My first thought would be to write an IF statement asking of the Date on your axis is less than or equal to today's date. If true then it would return the value from your formula, if false it would return BLANK(). So something potentially like this. Let me know if this helps or gets you closer.

     

    =IF( Table[Date] <= TODAY(), [Formula], BLANK() )