I am importing a CSV file using powershell.
The problem is that the heading of one of the columns is "Remaining time - hours". Therefore, I get a sequence of objects, and in fact it is assigned the property "Remaining time - hours".
What is the syntax for referencing this property?
eg,
Import-Csv AllOpenCases.csv | % {$case = $_ } $case | get-member
returns
Category : Inquiry Starred : No Remaining Time - Hours : 22.5
but if I print
$case.Remaining Time - Hours
I get an "Unexpected token" Time "in the expression or expression"
powershell csv
Andrew Shepherd Feb 01 2018-11-11T00: 00Z
source share