创建自定义函数的方法:
新建一个EXCEL文档,只保留一个工作表,其余删除。
按ALT+F11,打开VBE编辑器,插入一个模块,把下面的自定义函数代码复制到模块中,关闭VBE编辑器。
Public Function mystr(ll, ParamArray x())
For Each r In x
If IsArray(r) Then
For Each rr In r
If rr ""Then mystr = mystr & ll & rr
Next
Else
mystr = mystr & ll & r
End If
Next
mystr = Mid$(mystr, 2, Len(mystr))
End Function