[Q] How do I get access to the list of merged cells
See original GitHub issue💬 Questions and Help
Worksheet contains private property “_merges”. In JS i can just write
let m = workbook.getWorksheet(0)._merges
and get all merged cells in sheet. But in TS i get error “Property ‘_merges’ does not exist on type ‘Worksheet’”.
If i try
let m = workbook.getWorksheet(0).model.merges
i`m get a similar error - merges does non exist on WorksheetModel.
at the same time everything works in JS, but result are different.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
How to Find Merged Cells in Excel (and then get rid of it)
Go to the Home tab and click on the Merge & Center button. This will instantly unmerge all the cells. How to find...
Read more >Find Merged Cells in Excel - Excel Trick
Method 2: Finding Merged Cells using Macro (Listing Address of Merged Cells): · To create a macro, press the “Alt+F11” keys, this will...
Read more >How To Find Merged Cells In Excel || [Excel Tricks] - YouTube
In this tutorial, let us learn How to find merged cells in Excel.You might be knowing that there are few drawbacks with the...
Read more >How to unmerge cells in Excel - Ablebits
Select your table (or just the columns that have merged cells) and click the Merge & Center button on the Home tab. This...
Read more >How to enter array formulas in merged cells - Get Digital Help
1. Unmerge cells · Select the merged cell. · Go to tab "Home" on the ribbon. · Press with left mouse button on...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think it should make it public, the
_merge
property, or there should be some alternative method to access all merged cell.this is understandable, but where is the guarantee that someday this property will not be renamed