我正在尝试向vlookup添加多个Col_index_num。它甚至可能吗?
=VLOOKUP(CustomerList!A1,Customers,CONCATENATE(4,5),FALSE)
答案 0 :(得分:0)
你应该反过来写,即
=CONCATENATE(VLOOKUP(CustomerList!A1,Customers,4,FALSE),VLOOKUP(CustomerList!A1,Customers,5,FALSE))
编辑(您可以根据需要添加其他自定义格式):
=CONCATENATE(VLOOKUP(CustomerList!A1,Customers,4,FALSE),", ",VLOOKUP(CustomerList!A1,Customers,5,FALSE))