Google Sheets: INDIRECT() with a Range

后端 未结 3 1225
予麋鹿
予麋鹿 2021-01-24 00:46

This question could be rephrased to, \"Using a programmatically generated range in FILTER()\" depending on the approach one takes to answer it.

EDIT- It seems that I ina

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-24 01:12

    once again, maybe this is what you want:

    =FILTER('Data Import'!1:100000, 
     INDIRECT("'Data Import'!"&
     ADDRESS(1,       MATCH("student.grade", 'Data Import'!1:1, 0), 4)&":"&
     ADDRESS(1000000, MATCH("student.grade", 'Data Import'!1:1, 0), 4)) < 12)
    

提交回复
热议问题