Replies: 1 comment
-
|
You'll need to write all of that in PowerShell. Using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Let say I have 2 sheets in a workbook
I am able to pull in the data individually on each sheet using something like this
$Orders = Import-Excel -Path $DataSourcePath -WorksheetName 'Order', and get each column cells info by referring $Order."First row column cell name"
What I am curious is how I link the 2 sheets together so when I pull the 1st Order, it not only pull number of unit from Order 1, it knows it is a small, but it also pull the small product information with it, something like
2 unit, small, $1.00, 6' long.
Beta Was this translation helpful? Give feedback.
All reactions