Forum Discussion
How to make Line Chart stop mid-graph for future dates
- 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() )
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() )