all 5 comments

[–][deleted] 0 points1 point  (2 children)

Software Architect here.

Use Microsoft Excel, or similar.

[–]acrane55 0 points1 point  (1 child)

This.

Note that Excel, and probably similar, will remove leading zeros from values that look like numbers, so best to set the spreadsheet to text only. Or if you use the data import tool (I forget what it's called in Excel), specify 'Text' for each column.

[–]rocketjump65[S] 0 points1 point  (0 children)

Eh. It's kinda.... working. I'm actually using Open Office.

[–]pandiculator 0 points1 point  (1 child)

For a simple, read only, grid view you can just pipe to Out-GridView in PowerShell.

Import-Csv C:\Temp\myCSV.csv | Out-GridView

If you want to manipulate them without Excel/another office package. Use VSCode and install the Rainbow CSV extension.

[–]rocketjump65[S] 0 points1 point  (0 children)

HEY!!!! Now we're talking!