VBA或Excel公式将Excel中的列式数据连接到线性逗号分隔数据

时间:2017-04-26 14:12:44

标签: vba excel-vba excel-formula excel

我正在分解一个Excel工作表,它繁琐地使用字段合并来组织数据。数据是垂直组织的,而不是向每条记录添加线性字段。取消合并字段会导致一列文本数据具有许多孤立值,这些值需要连接到父记录中的字段中。我在记录中第一个字段的文本字符串的开头添加了标识符“NOTE:”。我想使用一个函数在列中搜索字符串“NOTE:”,将搜索结果递增到连接孤立文本字符串的列表,直到它到达下一个“注意:值,它将重复下一组的过程文本字符串。

我通常会使用简单的连接,但有7500条记录和27k条记录。

enter image description here

1 个答案:

答案 0 :(得分:0)

对于公式,它将需要订阅Office 365 Excel:

=IF(LEFT(B2,4) = "NOTE",TEXTJOIN(" ",TRUE,B2:INDEX(B3:$B$104000,IFERROR(MATCH("NOTE*",B3:$B$104000,0)-1,MATCH("ZZZ",B3:$B$104000)))),"")

如果您没有Office 365 Excel的订阅,请将此UDF添加到附加到工作簿的模块,并使用上面的公式:

Function TEXTJOIN(delim As String, skipblank As Boolean, arr)
    Dim d As Long
    Dim c As Long
    Dim arr2()
    Dim t As Long, y As Long
    t = -1
    y = -1
    If TypeName(arr) = "Range" Then
        arr2 = arr.Value
    Else
        arr2 = arr
    End If
    On Error Resume Next
    t = UBound(arr2, 2)
    y = UBound(arr2, 1)
    On Error GoTo 0

    If t >= 0 And y >= 0 Then
        For c = LBound(arr2, 1) To UBound(arr2, 1)
            For d = LBound(arr2, 1) To UBound(arr2, 2)
                If arr2(c, d) <> "" Or Not skipblank Then
                    TEXTJOIN = TEXTJOIN & arr2(c, d) & delim
                End If
            Next d
        Next c
    Else
        For c = LBound(arr2) To UBound(arr2)
            If arr2(c) <> "" Or Not skipblank Then
                TEXTJOIN = TEXTJOIN & arr2(c) & delim
            End If
        Next c
    End If
    TEXTJOIN = Left(TEXTJOIN, Len(TEXTJOIN) - Len(delim))
End Function

enter image description here