如何定义从第 n 行开始的 excel 数据透视范围?
how to define excel pivot range that starts on the nth row?
I know that when selecting A:F as a range in a pivot table, excel knows to ignore rows that are not in the usedrange.
我想跳过前 n 行,以便数据透视范围为 A6:F1000000。
既然明确定义了范围,我不相信excel可以进行任何优化
你知道跳过前n行的正确方法是什么吗?
如何使用这样的命名范围:-
=Sheet1!$A:INDEX(Sheet1!$A:$F,MATCH(1E+99,Sheet1!$A:$A),6)
假设您的列长度相同并且第一列包含数字?
I know that when selecting A:F as a range in a pivot table, excel knows to ignore rows that are not in the usedrange.
我想跳过前 n 行,以便数据透视范围为 A6:F1000000。
既然明确定义了范围,我不相信excel可以进行任何优化
你知道跳过前n行的正确方法是什么吗?
如何使用这样的命名范围:-
=Sheet1!$A:INDEX(Sheet1!$A:$F,MATCH(1E+99,Sheet1!$A:$A),6)
假设您的列长度相同并且第一列包含数字?