2014-02-19 204 views

回答

0

试试这个用户定义函数

Public Function conkat(rIn As Range) As String 
    conkat = "" 
    For Each r In rIn 
     conkat = conkat & "," & r.Value 
    Next r 
    conkat = Mid(conkat, 2) 
End Function 

使用,如:

= conkat(A1:A50)

+0

非常感谢您! – Victor

+0

非常欢迎您! –

相关问题