如何用vba代码取得单元格中换行符的个数

2024年11月18日 18:34
有1个网友回答
网友(1):

Sub chr10()
    Dim iStr As String
    Dim iSpace As String
    耐嫌芦者陆With Range("A1")
        iStr = Len(.Text)
        iSpace = Len(Replace(.Text, Chr(10), ""))
    End With
    MsgBox "A1单元昌带格中共" & iStr - iSpace & "个换行符"
End Sub