I've been manually processing a large amount of files in Excel. I've done some searching but haven't found a definitive best practice as to how I can achieve this process in an automated fashion.
My manual process is as follows:
I have a .tab (Tab-delimited) file. There are a total of 8 "columns" for each row. I need to negate the numerical values in the last 5 columns of every row.
What I've been doing
- Open the file in Excel
- Type a -1 in any blank cell. Copy it
- Highlight the data in the last 5 columns → right-click → Paste Special → Multiply → Enter
- Then save the file.
I'm not sure if the best approach for this is going to be PowerShell or an alternative script, so I wanted to reach out to the community to see what advice others may have for this. Thank you for your time.