我如何可以轉換大量的'97 Excel文件'95。我尋找其他解決方案作爲文件 - 另存爲。轉換大量的Excel文件
0
A
回答
0
,我發現這個蘋果腳本:
set theFolder to choose folder with prompt "Choose the folder that contains your Excel files"
tell application "Finder" to set theFiles to (files of theFolder)
set fileCount to count theFiles
repeat with i from 1 to fileCount
set fName to text 1 thru -5 of ((name of item i of theFiles) as text)
if ((name of item i of theFiles) as text) ends with ".xls" then
set tName to (theFolder as text) & fName & ".xls"
tell application "Microsoft Excel"
activate
open (item i of theFiles) as text
tell active workbook
save workbook as filename tName file format Excel7 file format with overwrite
end tell
close active workbook without saving
end tell
end if
end repeat
2
錄製宏並展開生成的VBA代碼可以根據需要,例如在給定文件夾中打開的所有.xls文件,並將它們轉換成一個又一個,等等可能無法提供最好的性能,但開發時間應該在1小時,也許更少。
+0
與我最近爲了將Word文件轉換爲PDF而給出的答案類似。鏈接中有代碼:http://superuser.com/questions/163217/is-there-a-free-batch-doc-to-pdf-converter-out-there/163221#163221 – 2010-07-15 19:52:35
1
遍歷文件,並使用SaveAs方法與您所選擇的fileformat結合。
相關問題
- 1. 將大型XML文件轉換爲Excel
- 2. 將大量記錄轉換爲excel文件而不消耗大量內存
- 3. VB.net文本 - > Excel的轉換(與轉換後需要大量的格式化)
- 4. 在Windows中將大量較小的文件轉換爲少量的大文件
- 5. XML文件轉換到Excel
- 6. 將mat文件轉換爲excel文件
- 7. Excel - 將大量條件格式轉換爲VBA
- 8. 閱讀大量的Excel文件的.xlsx
- 9. 轉換大量的MySQL轉儲文件,CSV
- 10. Excel VBA代碼批量轉換文件夾中的rtf文件爲pdf文件
- 11. 如何在Excel中將Excel文件轉換爲文本文件?
- 12. 轉換大型XML文件
- 13. 將Excel錶轉換爲文本文件
- 14. 問題文本到excel文件轉換
- 15. 從XML到Excel 2010文件的轉換
- 16. 將Excel文件批量轉換爲製表符分隔的文本文件
- 17. C#將Excel 2007(xlsx)文件轉換爲Excel 2003(xls)文件
- 18. 轉換大量的JavaScript
- 19. 大量行的轉換
- 20. 轉換大量文本塊JSON塊
- 21. 的文本文件轉換成變量
- 22. Excel到谷歌文件 - 公式轉換
- 23. codeigniter將excel文件轉換爲pdf
- 24. java excel到csv文件轉換
- 25. 將mysql查詢轉換爲excel文件
- 26. 轉換.sql插入表文件到excel
- 27. 從fortran轉換成excel文件fortran(ftn95)
- 28. 轉換PDF文件到Excel工作表
- 29. 將excel文件轉換爲python頻率
- 30. 嘗試將文件轉換爲excel ... [宏]
你真的說1997年至1995年的格式?那真是太老了,找工具很難。 – 2010-07-15 19:50:08
是的,它的嚴重性,我的matlab只能處理'95 – 2010-07-15 22:51:21
,因爲你正在使用Matlab,你可以使用.csv文件嗎?這樣你就不會被綁定到一個特定的Excel版本。 – 2010-07-15 22:57:22