We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1cfec commit c670faeCopy full SHA for c670fae
Types/OpenXML.Excel.Worksheet/get_Cell.ps1
@@ -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