DataTable group and sum data
I have a Powershell DataTable with two columns, pobox [string] and pages [int]. Data: pobox pages 7002 5 7002 2 7002 10 7004 1 7004 8 7006 2 7006 1 I am trying to group and sum the data like this pobox pages 7002 17 7004 9 7006 3 I have tried countless combos with … Read more