连接两个 VLOOKUP 数组
Concatenate two VLOOKUP arrays
我有两列作为数组:
列 (A) = ArrayFormula(ifna(VLOOKUP(F2:F,Auditors!A:B,2,0)))
列 (B) = ArrayFormula(ifna(VLOOKUP(G2:G,Supervisor!A:B,2,0)))
唯一的方法是连接它们并复制粘贴到列的末尾,但我需要帮助将它们连接为由 ,
:
分隔的新数组
A,B
你需要这样的串联吗?
=ArrayFormula(ifna(VLOOKUP(F2:F,Auditors!A:B,2,0) & ", " & VLOOKUP(G2:G,Supervisor!A:B,2,0)))
我有两列作为数组:
列 (A) = ArrayFormula(ifna(VLOOKUP(F2:F,Auditors!A:B,2,0)))
列 (B) = ArrayFormula(ifna(VLOOKUP(G2:G,Supervisor!A:B,2,0)))
唯一的方法是连接它们并复制粘贴到列的末尾,但我需要帮助将它们连接为由 ,
:
分隔的新数组
A,B
你需要这样的串联吗?
=ArrayFormula(ifna(VLOOKUP(F2:F,Auditors!A:B,2,0) & ", " & VLOOKUP(G2:G,Supervisor!A:B,2,0)))