Read a value from a .xls file using .bat files

前端 未结 4 1343
礼貌的吻别
礼貌的吻别 2021-01-25 05:23

I just want to know if there could be any way by which we can read a value from an .xls file using a .bat file. For eg:If i have an .xls named test.xls which is having two colu

4条回答
  •  别那么骄傲
    2021-01-25 06:17

    You can't do this directly from a batch file. Furthermore, to manipulate use Excel files in scripting you need Excel to be installed.

    What you can do is wrap the Excel-specific stuff in a VBScript and call that from your batch.

提交回复
热议问题