I am new to PowerShell and need to split a CSV file into multiple files based on column value.
My source file looks like this
ID Name TNumber
123 Jo 123456
123 Joe 789012
124 Tom 896578
124 Tom 403796
I read this thread which helped me with the grouping but I lack the understanding of how to split it into multiple files based on the ID column. Is that possible?