2012-05-25 106 views

回答

1

高效?使用NotesDXLExporter導出到DXL/XML。見link。簡單?在視圖中選擇文檔並使用文件/導出,另存爲類型:逗號分隔值。您可以使用您需要導出的數據來準備自己的視圖。

0

我得到了下面的簡單代碼導出CSV文件。

[Link]

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% 
+0

現在,我想從CSV文件導入數據 – Mythli

3

我用公式以及導出爲csv & Excel中。

@Command([FileExport]; 「逗號分隔值」; 「C:\ text.csv」)