Search found 5 matches

by Bitshir Ling
Wed Dec 16, 2020 9:37 am
Forum: PowerShell
Topic: Dynamically adding a column to a CSV output file
Replies: 7
Views: 7844

Re: Dynamically adding a column to a CSV output file

I was not asking for you to write the code for me. Did you look at the code that I submitted?
by Bitshir Ling
Wed Dec 16, 2020 9:02 am
Forum: PowerShell
Topic: Dynamically adding a column to a CSV output file
Replies: 7
Views: 7844

Re: Dynamically adding a column to a CSV output file

Below is an example of the input file: Cust_Num ACC_Num Acc_Type Customer_Name 352 10832 25 John Smith 352 10200 30 John Smith 352 32011 20 John Smith 352 84233 45 John Smith 211 11852 25 Julie Baxter 211 80731 25 Julie Baxter 843 43901 35 Cathy Right 332 50912 30 William Grant 332 73418 20 William ...
by Bitshir Ling
Wed Dec 16, 2020 8:40 am
Forum: PowerShell
Topic: Dynamically adding a column to a CSV output file
Replies: 7
Views: 7844

Re: Dynamically adding a column to a CSV output file

Actually I know what a CSV file is. What you are proposing is that every time I have to run this report is that I go in and count the number accounts and set the number columns accordingly. This seems highly inefficient and basically defeats the purpose of writing the script. Basically, your conclus...
by Bitshir Ling
Wed Dec 16, 2020 6:10 am
Forum: PowerShell
Topic: Dynamically adding a column to a CSV output file
Replies: 7
Views: 7844

Dynamically adding a column to a CSV output file

Good Morning I am writing a script to read a csv file of customers with a single customer number but multiple account numbers. The end results should be a single row for each customer but multiple columns for each account number and type. Cust_Num ACC_Num Acc_Type Customer_Name 352 10832 25 John Smi...