Skip to content

Commit c670fae

Browse files
author
James Brundage
committed
feat: OpenXML.Excel.Worksheet.get_Cell ( Fixes #6 )
1 parent aa1cfec commit c670fae

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
$excelCells = [Ordered]@{
2+
3+
}
4+
foreach ($worksheetRow in $this.content.worksheet.sheetdata.row) {
5+
foreach ($worksheetColumn in $worksheetRow.c) {
6+
$excelCells[$worksheetColumn.r] = $worksheetColumn.v
7+
}
8+
}
9+
$excelCells

0 commit comments

Comments
 (0)