如何在 Excel 中将列表转换为逗号分隔列表,并且每个数字前都有一个感叹号?

如何在 Excel 中将列表转换为逗号分隔列表,并且每个数字前都有一个感叹号?

我有列中的数字

1
2
3
4
5

我希望它排成一行,每个数字前面都有一个感叹号,每个数字后面都有一个逗号。

!1,!2,!3,!4,!5

答案1

如果您有 Office 365 Excel,则:

="!" & TEXTJOIN(",!",TRUE,A1:A5)

在此处输入图片描述


如果您没有 TEXTJOIN(),则将此代码放在附加到工作表的模块中并使用上述公式。

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

相关内容