Hi. I have a column with about 90,000 rows. Is there a way I can insert 4 blank rows after every row?
I am trying to do this.. Currently have ColumA:
12345
12346
12347
12348
12349
I have a four line batch file I need to write for each instance. In column B i am concatenating data from column a, but need it in 4 individual rows:
ColA ColB
12345 copy 12345 c:\temp
cd temp
rename 12345 12345.tif
copy 12345.tif c:\final
cd..
12346 copy 12346 c:\temp
cd temp
rename 12346 12346.tif
copy 12346.tif c:\final
cd..
12347 copy 12347 c:\temp
cd temp
rename 12347 12347.tif
copy 12347.tif c:\final
cd..
12348 copy 12348 c:\temp
cd temp
rename 12348 12348.tif
copy 12348.tif c:\final
cd..
etc.
Column B isn't my exact script, but just an example for simplicity.
I am trying to do this.. Currently have ColumA:
12345
12346
12347
12348
12349
I have a four line batch file I need to write for each instance. In column B i am concatenating data from column a, but need it in 4 individual rows:
ColA ColB
12345 copy 12345 c:\temp
cd temp
rename 12345 12345.tif
copy 12345.tif c:\final
cd..
12346 copy 12346 c:\temp
cd temp
rename 12346 12346.tif
copy 12346.tif c:\final
cd..
12347 copy 12347 c:\temp
cd temp
rename 12347 12347.tif
copy 12347.tif c:\final
cd..
12348 copy 12348 c:\temp
cd temp
rename 12348 12348.tif
copy 12348.tif c:\final
cd..
etc.
Column B isn't my exact script, but just an example for simplicity.