Przejdź do głównej zawartości

Jak zidentyfikować i zaznaczyć wszystkie scalone komórki w programie Excel?

Czy wiesz, jak znaleźć i zaznaczyć wszystkie scalone komórki w programie Excel? Oto trzy fajne i trudne sposoby szybkiego identyfikowania i zaznaczania wszystkich scalonych komórek w zaznaczeniu lub zakresie w programie Excel.

doc wybierz scalone komórki 4

Zidentyfikuj i zaznacz wszystkie scalone komórki za pomocą polecenia Znajdź

Szybko wybierz i policz wszystkie połączone komórki z Kutools dla Excel

Zidentyfikuj wszystkie scalone komórki za pomocą kodu VBA


Zidentyfikuj i zaznacz wszystkie scalone komórki za pomocą polecenia Znajdź

Możesz zidentyfikować i zaznaczyć wszystkie scalone komórki w aktywnym arkuszu przez Znajdź polecenie z następującymi krokami:

1, Kliknij Strona główna > Znajdź i wybierz > Znajdź otworzyć Znajdowanie i zamienianie Okno dialogowe. Możesz także otworzyć plik Znajdowanie i zamienianie okno dialogowe po naciśnięciu klawisza Ctrl + F klawiatura.

2, Kliknij utworzony w oknie dialogowym (jeśli nie możesz znaleźć pliku utworzony kliknij przycisk Opcje przycisk, aby rozwinąć okno dialogowe.) zobacz zrzut ekranu:

doc wybierz scalone komórki 1

3. W wyskakującym okienku Znajdź format w oknie dialogowym, zaznacz tylko Scal komórki opcja w Kontrola tekstu sekcja pod Wyrównanie kartę i kliknij OK.

doc wybierz scalone komórki 2

4. Teraz wróć do Znajdowanie i zamienianie okno dialogowe, kliknij Znajdź wszystko przycisk. Wszystkie scalone komórki są wymienione na dole tego okna dialogowego. Wybierz wszystkie wyniki wyszukiwania, przytrzymując przycisk Shift klawisz.

Teraz wszystkie scalone komórki w aktywnym arkuszu są zaznaczane po zaznaczeniu wszystkich wyników wyszukiwania. Zobacz zrzut ekranu:

doc wybierz scalone komórki 3

Porady: Jeśli chcesz tylko zidentyfikować, znaleźć i zaznaczyć scalone komórki w zaznaczeniu, musisz najpierw zaznaczyć zakres.


Wybierz i policz wszystkie scalone komórki za pomocą Kutools for Excel

Kutools dla programu Excel's Wybierz Scalone komórki narzędzie pomoże Ci zidentyfikować, znaleźć i zaznaczyć wszystkie scalone komórki w zaznaczeniu za pomocą jednego kliknięcia.

Kutools dla programu Excel : z ponad 300 poręcznymi dodatkami Excela, które można wypróbować bez ograniczeń w ciągu 30 dni. 

Po zainstalowaniu Kutools dla programu Excelwykonaj następujące czynności :( Bezpłatne pobieranie Kutools dla programu Excel teraz! )

1. Wybierz zakres danych, który chcesz zaznaczyć scalone komórki.

2. Kliknij Kutools > Wybierz > Wybierz Scalone komórkizobacz zrzut ekranu:

3. Wszystkie scalone komórki w zaznaczeniu zostały zaznaczone jednocześnie, a liczba połączonych komórek jest również policzona, patrz zrzut ekranu:

doc wybierz scalone komórki 7

Wskazówka: Aby móc korzystać z tej funkcji, należy zainstalować Kutools dla programu Excel najpierw proszę kliknij, aby pobrać i mieć 30-dniowy bezpłatny okres próbny teraz.

Zidentyfikuj wszystkie scalone komórki za pomocą kodu VBA

VBA 1: Zidentyfikuj i zaznacz wszystkie scalone komórki

1. Przytrzymaj ALT + F11 klucze i otwiera plik Microsoft Visual Basic for Applications okno.

2. Kliknij wstawka > Modułi wklej następujące makro w Moduł Okno.

Sub FindMergedcells()
'updateby Extendoffice
Dim x As Range
For Each x In ActiveSheet.UsedRange
If x.MergeCells Then
x.Interior.ColorIndex = 8
End If
Next
End Sub

3, wciśnij F5 klucz do uruchomienia tego makra. Wszystkie scalone komórki w aktywnym arkuszu są identyfikowane i podświetlane, patrz zrzut ekranu:

doc wybierz scalone komórki 4

VBA 2: Zidentyfikuj i wyświetl wszystkie scalone komórki

1. Przytrzymaj ALT + F11 klucze i otwiera plik Microsoft Visual Basic for Applications okno.

2. Kliknij wstawkaModułi wklej następujące makro w Moduł Okno.

Sub ListMergedcells()
'updateby Extendoffice
Dim x As Range
Dim sMsg As String
sMsg = ""
For Each x In ActiveSheet.UsedRange
If x.MergeCells Then
If sMsg = "" Then
sMsg = "Merged cells:" & vbCr
End If
sMsg = sMsg & Replace(x.Address, "$", "") & vbCr
End If
Next
If sMsg = "" Then
sMsg = "No merged cells."
End If
MsgBox sMsg
End Sub

3, wciśnij F5 Aby uruchomić to makro, wszystkie scalone komórki są wymienione w wyskakującym oknie dialogowym. Zobacz zrzut ekranu:

doc wybierz scalone komórki 5

Comments (12)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Is it possible to identify the first and the last column number of the merged range in vba?
This comment was minimized by the moderator on the site
I require code to list merged ranges in a worksheet where the merged ranges are individually entered in cells starting at "A1" thus a3:c3 b2:b7 etc...........
This comment was minimized by the moderator on the site
well done You are a star... Thanks :-)
This comment was minimized by the moderator on the site
Very Nice thanks a lot
This comment was minimized by the moderator on the site
Actually I just about went mental trying to fix this in a spreadsheet. In desperation I selected all the cells (control A) clicked "merge and centre" and presto! it was fixed.
This comment was minimized by the moderator on the site
Probably obvious, but: In my last comment I should have made it clear you need to "select" each column, in turn, before scanning visually. Though really you only need to scan certain columns, I think: To the best of my knowledge, it's only cells containing text that will occasionally annex an adjoining cell, and numeric-only columns can be trusted not to do so. Even with text columns, you should be OK just checking every other column, because if any cell in the selected column has been involved in an annexation (to the right or from the left), that will show up in a visual scan of the selected column. I have never seen annexations occurring vertically, only horizontally. But if such a thing happened (a vertical annexation), you could try the same technique going row by row instead of column by column. The procedure is tedious, definitely. A royal pain, in fact. But if you have to sort your data, and Microsoft refuses to fix their bug, it's the only recourse I know of. Nowadays I try to remember to put a space character into each cell of the area I expect to use, prior to entering any other data, thus ensuring no annexations will occur.
This comment was minimized by the moderator on the site
thank u this help me to find merged cell in my excel
This comment was minimized by the moderator on the site
... so in the spreadsheet you spoke of, which was not set up with those protective space characters, my approach would be to visually scan each column which lies just to the right of any text column; and immediately after identifying & unmerging each occurrence, I would put a space character in the empty cell so the merging will not recur. Probably there's a VBA or other coding means to accomplish this much more efficiently. Anyone???
This comment was minimized by the moderator on the site
Actually I think this can be avoided entirely, if you remember to do so before entering data into any text column. In my experience the only time cells are clandestinely merged is when an empty cell is to the right of a text cell, where normally the display of the text would be extended to take advantage of the otherwise unused display space provided by the empty cell. Therefore, when initially setting up your spreadsheet, before entering any data, you can fill every "susceptible" cell with a single space—as many rows down as you expect to have data to fill. That space will be honored like any other text, and the cell to the left will not annex it.
This comment was minimized by the moderator on the site
If your spreadsheet is small (or you are desperate enough), the best way I've found is to select one column at a time and scroll all the way down to the bottom. Any merged cells will be obvious, because the entire merged cell is highlighted. You can then fix each one, one by one. But you risk wasting a lot of time doing this, since Excel continues to merge cells "behind your back" whenever it feels like doing so.* Therefore, cells you have just unmerged (or others which hadn't been merged before) may become merged while you believe you are finishing the unmerging process. I tried to find a way to completely disable the merging of cells but haven't found it. Better, of course, would be some way to keep Excel from engaging in this psychopathic behavior! *Yesterday, desperate, I did try to unmerge cells in a not-so-large spreadsheet (22 columns and fewer than 1,000 rows). Each time I thought I had finished and tried to sort, I got that same message. So then I tried another way to identify where the merged cells were—selecting a screenful of rows at a time and trying the sort on just those rows. Each time I got the message, I would try half the screenful at a time (etc.) until I identified the row(s) with merged cells. By going through the entire spreadsheet until each screenful had been successfully sorted, I figured the entire sort should work. But, NOT. Excel had been gleefully merging cells I had just unmerged. Please, someone, post a solution!
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations