Let's say:
I have 1,000 Rows of separate information in an Excel spreadsheet. (1 Column, 1,000 Rows)
I want to save each 100 rows as its own file name. (
workbook1.txt
,workbook2.txt
,workbook3.txt
, etc.)
Currently, I do this manually:
- I will highlight 100 Rows.
- I use the Control+C (Copy)
then Control+N (New) to create a new file, then Control+V (Paste) then Control+S To Save the File,
naming the file with the default name assigned when using Control+N, So it would be saved as
workbook1
,workbook2
,workbook3
...
I am saving them as text files (.txt).
Is is possible to automate this process, maybe a bat file or something?