小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

使用vba來(lái)判定單元格是否已經(jīng)被合并,以及合并的范圍

 王淼個(gè)人館 2023-08-23 發(fā)布于山東

Sub CheckMergeStatus1()

    Dim selectedCell As Range

    Dim mergedRange As Range

    Dim cell As Range

    ' 選擇您要檢查的單元格

    Set selectedCell = ActiveCell

    ' 初始化合并范圍為空

    Set mergedRange = Nothing

    ' 遍歷所有單元格,查找合并范圍

    For Each cell In selectedCell.Worksheet.UsedRange

        If cell.MergeCells Then

            If Not Intersect(selectedCell, cell.MergeArea) Is Nothing Then

                Set mergedRange = cell.MergeArea

                Exit For

            End If

        End If

    Next cell

    If Not mergedRange Is Nothing Then

        MsgBox "選定的單元格位于合并范圍內(nèi)。合并范圍是:" & mergedRange.Address

    Else

        MsgBox "選定的單元格不在合并范圍內(nèi)。"

    End If

End Sub

    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多