This is for viewing only, using Powershell…
GUI Display; supports sorting, filtering:
Import-Csv yourfile.csv |Out-GridView
Console Display:
Import-Csv yourfile.csv |Format-Table -AutoSize
or:
Import-Csv yourfile.csv |Format-List
For additional sorting and filtering options, pipe through where-object and sort-object cmdlets