Google Docs (Spreadsheets): Conditional Formatting Referencing Other Sheets

后端 未结 1 1336
迷失自我
迷失自我 2021-01-23 14:21

Google Docs (Spreadsheet) tells me that this (custom) formula is wrong.. in Excel instead works:

=AND(MATCH(CONCATENATE($A2;\" \";$B2);Allievi!$G$1:$G$1204;0); $         


        
相关标签:
1条回答
  • 2021-01-23 14:59

    You can reference the sheet and cell indirectly.

    =INDIRECT("SHEETNAME!"&"CELLRANGE")

    INCLUDE THE QUOTATION MARKS

    For your formula it should be something like

    =AND(MATCH(CONCATENATE($A2;" ";$B2);INDIRECT("Allievi!"&"$G$1:$G$1204";0); $L2="Facilitatore di classe")
    
    0 讨论(0)
提交回复
热议问题