Tác dụng: nối (concatenate) dữ liệu từ nhiều Cell trong 1 RANGE với delimiter tùy chọn.
Cách dùng: Alt+F11 , Add new module, copy&paste đoạn source bên dưới và tận hưởng việc nối cell bây giờ dễ dàng hơn bao giờ hết.
Trước kia: để nối nội dung của các cell từ A1~A5, giữa các nội dung có dấu phẩy (,) thì phải gõ
=CONCATENATE(A1,",",A2,",",A3,",",A4,",",A5)Hãy tưởng tượng khi bạn phải nối nội dung của 50 Cells :'(
Bây giờ thì chỉ cần
=CONCAT(A1:A5,",")
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function concat(useThis As Range, Optional delim As String) As String | |
' this function will concatenate a range of cells and return one string | |
' useful when you have a rather large range of cells that you need to add up | |
Dim retVal, dlm As String | |
retVal = "" | |
If delim = Null Then | |
dlm = "" | |
Else | |
dlm = delim | |
End If | |
For Each cell In useThis | |
If CStr(cell.Value) <> "" And CStr(cell.Value) <> " " Then | |
retVal = retVal & CStr(cell.Value) & dlm | |
End If | |
Next | |
If dlm <> "" Then | |
retVal = Left(retVal, Len(retVal) - Len(dlm)) | |
End If | |
concat = retVal | |
End Function | |