Trying to chart a data set w/ (2) max values in the data that are always considerably higher than the rest of the data. When you chart it as normal Chart 1 the data is skewed because of the (2) max values in the data set. Is there a way to ignore the (2) max values Chart 2 and chart them separately as in Chart 3? Or put the max values on the same chart but a secondary axis? Prefer not to use helper columns because of 100k+ rows of data. Open to using vba suggestions.
| Amount | Time |
|:-------:|:-----------:|
| 50 | 8:30:00 AM |
| 100 | 9:30:00 AM |
| 80 | 10:30:00 AM |
| 100,000 | 11:30:00 AM |
| 90 | 12:30:00 PM |
| 60 | 1:30:00 PM |
| 500 | 2:30:00 PM |
| 600 | 3:30:00 PM |
| 10 | 4:30:00 PM |
| 900,000 | 5:30:00 PM |





So just use an if() to replace values greater than 1000 (or whatever value you consider relevant with NA() like so:
Drag down in a column of your choice and use that for the chart data.
The do the reverse for the other chart version: