I have a csv file like:
020;1;1;1
030;1;1;1
020;1;2;1
040;1;1;1
Now I want to import-csv the values from the first column and value 020.
I tried:
Import-csv "path/to/file" | Where-Object {$_.[0] -eq "020"
I get a missing Value error.
Can anyone help?