print output of two commands in two columns in excel file
Posted: 06 Jun 2017, 01:28
Hi,
I am writing a windows script to run 2 commands. Now the outputs goes in two rows, but I want the output of each command goes in different columns in excel. This is My script:
Now my Output.xls is like:
I want my output.xls be like :
I will appreciate if somebody has any solution for this.
Thanks,
I am writing a windows script to run 2 commands. Now the outputs goes in two rows, but I want the output of each command goes in different columns in excel. This is My script:
Code: Select all
For %%F in (*.txt) do (
Command_1 %%F >> output.xls & command_2 %%F >> output.xls
)
Code: Select all
AAA
BBB
Code: Select all
AAA BBB
I will appreciate if somebody has any solution for this.
Thanks,