有没有办法importhtml表并跳过重复的列标题?

时间:2019-11-04 18:48:31

标签: arrays google-sheets import unique google-sheets-formula

我正在尝试从ESPN导入表格式的数据,但是该表在整个表中重复标题,如果可能的话,我想跳过它们。

http://www.espn.com/nhl/statistics/team/_/stat/scoring/year/2019/seasontype/2

我希望它仅在最顶部一次导入该行,而不再重复!这可能吗?

RK  TEAM    GP  G   GA  GF/G    GA/G    DIFF    SF/G    SA/G    DIFF    SVPCT   PIM PIMA    DIFF

1 个答案:

答案 0 :(得分:0)

尝试:

=UNIQUE(IMPORTHTML("http://www.espn.com/nhl/statistics/team/_/stat/scoring/year/2019/seasontype/2", 
 "table", 1))

0