Google Sheets: INDIRECT() with a Range

后端 未结 3 1221
予麋鹿
予麋鹿 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:10

    I have no idea what you want to achieve but take a look at this:

    ={'Data Import'!1:1;
     FILTER('Data Import'!1:10000, 'Data Import'!D:D < 12)}
    

    or:

    =QUERY(FILTER('Data Import'!1:10000, 'Data Import'!D:D < 12), 
     "select * label Col4 'student.grade'", 0)
    

提交回复
热议问题