Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handling of the merged cells #241

Open
kagalenko-m-b opened this issue Sep 7, 2023 · 1 comment
Open

Handling of the merged cells #241

kagalenko-m-b opened this issue Sep 7, 2023 · 1 comment

Comments

@kagalenko-m-b
Copy link

kagalenko-m-b commented Sep 7, 2023

There is a loss of information when importing spreadsheet files with merged cells. Take, for instance, this pair of files, created with LibreOffice: test.xlsx, test_merged.xlsx. The second file had been made from the test.xlsx by merging the cells in the second column (Format -> Merge Cells).

julia> d = XLSX.readxlsx(fp*"test.xlsx").workbook.sheets[1]
2×2 XLSX.Worksheet: ["Sheet1"](A1:B2) 

julia> d1 = XLSX.readxlsx(fp*"test_merged.xlsx").workbook.sheets[1]
2×2 XLSX.Worksheet: ["Sheet1"](A1:B2) 

julia> d.cache.cells == d1.cache.cells
true
@kagalenko-m-b
Copy link
Author

This issue is causing me some problems, any chance of a fix?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant