【问题标题】:Pull certain information from sheets into a main sheet将工作表中的某些信息拉到主工作表中
【发布时间】:2024-05-23 20:10:01
【问题描述】:

是否有一种公式可以将信息从多张表格中提取到主要表格中。 示例从表 1-8 的 A-N 获取 Daisy Trucking Inc 的信息到那里的主表。 enter image description here

enter image description hereenter image description here

enter image description here enter image description hereenter image description hereenter image description here

【问题讨论】:

    标签: google-sheets formula


    【解决方案1】:

    尝试:

    =QUERY({Sheet1!A:N; Sheet2!A:N; Sheet3!A:N; Sheet4!A:N; 
            Sheet5!A:N; Sheet6!A:N; Sheet7!A:N; Sheet8!A:N}; 
     "where Col2 = 'Daisy Trucking Inc'"; 0)
    

    【讨论】:

    • 谢谢!!!!!!
    最近更新 更多