You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 26, 2022. It is now read-only.
Should produce this - and it does if you use an XLSX writer:
But it actually produces this:
Note that C1 should have a green background, but doesn't because it is treated as a repeat of A1/B1.
Unfortunately the "repeated cell" check happens before the style ID is allocated, so I think fixing this would have to involve comparing the cell styles directly?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The code in WorksheetManager to detect whether a cell is repeated only considers the cell value.
Unfortunately this means a row with repeated values but different styles is not rendered correctly.
Should produce this - and it does if you use an XLSX writer:
But it actually produces this:
Note that C1 should have a green background, but doesn't because it is treated as a repeat of A1/B1.
Unfortunately the "repeated cell" check happens before the style ID is allocated, so I think fixing this would have to involve comparing the cell styles directly?
The text was updated successfully, but these errors were encountered: