任何人都可以告訴我哪種方法(自由文件或ole對象創建)能夠將Lotus notes文檔導出爲CSV和Excel文件嗎?將Lotus Notes文檔導出到CSV和Excel文件
0
A
回答
1
高效?使用NotesDXLExporter導出到DXL/XML。見link。簡單?在視圖中選擇文檔並使用文件/導出,另存爲類型:逗號分隔值。您可以使用您需要導出的數據來準備自己的視圖。
0
我得到了下面的簡單代碼導出CSV文件。
fileNum% = Freefile()
Open filename For Output As fileNum%
' use the view column titles as the CSV headers
Forall c In view.Columns
If cns = "" Then
cns = c.title
Else
cns = cns + +"," + c.title
End If
End Forall
Print #fileNum%, cns
' now get and print the values for each row and column
Set vc = view.AllEntries
Set entry = vc.GetFirstEntry()
While Not entry Is Nothing
rowstring = ""
Forall colval In entry.ColumnValues
If rowstring = "" Then
rowstring = colval
Else
rowstring = rowstring + +"," + colval
End If
End Forall
Print #fileNum%, rowstring
Set entry = vc.GetNextEntry(entry)
Wend
Close fileNum%
3
我用公式以及導出爲csv & Excel中。
@Command([FileExport]; 「逗號分隔值」; 「C:\ text.csv」)
相關問題
- 1. 導出到Excel,Lotus notes domino
- 2. Lotus Notes從文檔
- 3. 如何將Notes Notes文檔(電子郵件,任務等)從Lotus Notes Client 8.5導出到DXL文件中?
- 4. Lotus Notes - 將電子郵件導出爲純文本文件
- 5. 重命名Lotus Notes文檔
- 6. Lotus Notes文檔類型
- 7. Lotus Notes文檔爲PDF
- 8. Lotus Notes和xul文件
- 9. 將CSV文件導出到Excel 2007
- 10. Lotus Notes LDAP導出
- 11. Lotus notes文檔同時出現在收件箱和SentItem中
- 12. Lotus Notes文檔同時出現在收件箱和SentItem中
- 13. 通過Apache-POI將Lotus Notes富文本MIME內容導出到Word/Excel中
- 14. 使用Lotus Notes將excel文件上傳到AS400
- 15. 如何將XML/JSON文件轉換爲Lotus Notes中的文檔?
- 16. CSV到Excel文檔?
- 17. MailGetMessageBodyComposite導出RTF Lotus Notes RichText
- 18. 導出Lotus Notes/Domino郵箱
- 19. Lotus Notes自動導出
- 20. 刷新Lotus Notes文件夾
- 21. 使用Java API讀取Lotus Notes文檔
- 22. Lotus Notes中的文檔關聯
- 23. 打印Lotus Notes文檔用C#DLL
- 24. 通過COM讀取Lotus Notes文檔
- 25. 文檔對Lotus Notes domino.dll分別interop.domino.dll
- 26. 如何更新Lotus Notes文檔?
- 27. 的Lotus Notes:創建文檔預覽
- 28. 刷新Lotus Notes中的郵寄文檔
- 29. 將datagrid導出到Excel文檔
- 30. Lotus Notes工具欄按鈕將文檔移動到收藏夾文件夾
現在,我想從CSV文件導入數據 – Mythli