from > https://stackoverflow.com/questions/20874464/format-table-on-array-of-hash-tables
Using Powershell V4:
$table = @( @{ColumnA="Able"; ColumnB=1},
@{ColumnA="Baker"; ColumnB=2},
@{ColumnA="Charlie"; ColumnB=3} )
Last updated:2021-08-01