use*_*435 6 google-docs google-sheets
我正在尝试使用基于Google文档中多个条件的查找
我正在使用一个INDEX/MATCH公式,适用于Excel
= index('EXA Master Matrix'!A3:Z199,MATCH(B27&D27&E27&F27,'EXA Master Matrix'!$ A $ 4:$ A&'EXA Master Matrix'!$ B $ 4:$ B&'EXA Master Matrix'!$ D $ 4 :$ D&'EXA Master Matrix'!$ R $ 4:$ R,0),18)
它没有返回正确的,但任何想法如何为Google Docs复制这个?
我基本上在寻找B27,D27,E27和F27以匹配EXA Master Matrix电子表格,然后为它显示该行的第18个值(因此,18))
任何帮助赞赏
小智 7
这适合我:
=INDEX ( 'Staffing-Table'!$E$2:$E$176 , ( MATCH ( $A9 & $B9 & "Radiologist" , 'Staffing-Table'!$A$2:$A$176 & 'Staffing-Table'!$B$2:$B$176 & 'Staffing-Table'!$D$2:$D$176, 0 )))
Run Code Online (Sandbox Code Playgroud)
我想你应该读一读:http: //www.randomwok.com/excel/how-to-use-index-match/
基本上你的INDEX第一个变量应该说你要返回什么列,所以在这种情况下它将是第18列,而不是整个表.