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
I have created a simple file and used suggested code, but all I get the the complete row or null. so many suggested code snippets don't work will message like not supported yet upgrade :-(
PS C:\PowerShell> Get-Module -ListAvailable -Name ImportExcel | Select-Object Version
Version
7.8.6
7.8.6
7.8.6
PS C:\PowerShell> $PSVersionTable.PSVersion
Major Minor Patch PreReleaseLabel BuildLabel
7 4 1
All I want to do is import (long) rows from a spreadsheet and export the header as a label for each row (1 page per row) as a pdf. In theory simple using import-excel.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have created a simple file and used suggested code, but all I get the the complete row or null. so many suggested code snippets don't work will message like not supported yet upgrade :-(
This is my code and results - see $cell is blank.
$data = Import-Excel -Path "C:/powershell/file.xlsx" -workSheetName "sheet1" -startRow 2
PS C:\PowerShell> Get-Module -ListAvailable -Name ImportExcel | Select-Object Version
Version
7.8.6
7.8.6
7.8.6
PS C:\PowerShell> $PSVersionTable.PSVersion
Major Minor Patch PreReleaseLabel BuildLabel
7 4 1
All I want to do is import (long) rows from a spreadsheet and export the header as a label for each row (1 page per row) as a pdf. In theory simple using import-excel.
Beta Was this translation helpful? Give feedback.
All reactions