-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle columns without r attribute (#50)
* Handle columns without r attribute (#48) * Refactor logic
- Loading branch information
Showing
3 changed files
with
74 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac" xmlns:xr="http://schemas.microsoft.com/office/spreadsheetml/2014/revision" xmlns:xr2="http://schemas.microsoft.com/office/spreadsheetml/2015/revision2" xmlns:xr3="http://schemas.microsoft.com/office/spreadsheetml/2016/revision3" mc:Ignorable="x14ac xr xr2 xr3" xr:uid="{8E20F794-4B88-3543-AD6B-C05CAF17DEC8}"> | ||
<dimension ref="A1:A4"/> | ||
<sheetViews> | ||
<sheetView tabSelected="1" workbookViewId="0"> | ||
<selection activeCell="A5" sqref="A5"/> | ||
</sheetView> | ||
</sheetViews> | ||
<sheetFormatPr baseColWidth="10" defaultRowHeight="16" x14ac:dyDescent="0.2"/> | ||
<sheetData> | ||
<row r="1" spans="1:1" x14ac:dyDescent="0.2"> | ||
<c r="A1" t="s"> | ||
<v>0</v> | ||
</c> | ||
<c t="s"> | ||
<v>1</v> | ||
</c> | ||
</row> | ||
<row r="2" spans="1:1" x14ac:dyDescent="0.2"> | ||
<c t="s"> | ||
<v>2</v> | ||
</c> | ||
<c r="B2" t="s"> | ||
<v>3</v> | ||
</c> | ||
</row> | ||
</sheetData> | ||
<pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/> | ||
</worksheet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters