A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
By better reading your request, I see now your problem opposite: keep all the data in chart, but reduced in the table, OK? In that case, the solution is to hide each but n-th row on the datasheet and ensure (in chart Options) that your chart will depict all the data.
The macro below does the hiding.
My apologies
PB
Option Explicit
Sub HideButNth()
Dim R As Long, RF As Long, RL As Long
Static N As Long
RF = Selection.Row
RL = Selection.End(xlDown).Row
If N = 0 Then N = 2
N = Application.InputBox("Select the first data cell!!!" _
& vbCrLf & "and input N for unhidden each Nth", "Hiding data", N, , , , , vbLong)
Application.ScreenUpdating = False
Range(Rows(RF), Rows(RL)).Hidden = False
If N <= 1 Then Exit Sub
R = RL
Do
If R Mod N <> 0 Then Rows(R).Hidden = True
R = R - 1
Loop Until R <= RF
Application.ScreenUpdating = True
End Sub