簡體   English   中英

Excel VBA將文件名另存為CSV和單元格值

[英]Excel VBA to save file name as CSV and Cell Value

我有一個宏,可以將一系列單元格導出到csv,這很好,我現在需要它來調用文件作為單元格值,最好是B2。

提前致謝。

宏:

Sub WriteCSVFile()

    Dim My_filenumber As Integer Dim logSTR As String

    My_filenumber = FreeFile

    logSTR = logSTR & Cells(2, "B").Value & " , " 
    logSTR = logSTR & Cells(3, "B").Value & " , " 
    logSTR = logSTR & Cells(4, "B").Value & " , " 
    logSTR = logSTR & Cells(5, "B").Value & " , " 
    logSTR = logSTR & Cells(6, "B").Value & " , " 
    logSTR = logSTR & Cells(7, "B").Value & " , " 
    logSTR = logSTR & Cells(8, "B").Value & " , " 
    logSTR = logSTR & Cells(9, "B").Value & " , " 
    logSTR = logSTR & Cells(10, "B").Value & " , " 
    logSTR = logSTR & Cells(11, "B").Value & " , " 
    logSTR = logSTR & Cells(12, "B").Value & " , " 
    logSTR = logSTR & Cells(13, "B").Value & " , " 
    logSTR = logSTR & Cells(14, "B").Value & " , " 
    logSTR = logSTR & Cells(15, "B").Value & " , " 
    logSTR = logSTR & Cells(16, "B").Value & " , " 
    logSTR = logSTR & Cells(18, "B").Value & " , " 
    logSTR = logSTR & Cells(19, "B").Value & " , " 
    logSTR = logSTR & Cells(20, "B").Value & " , " 
    logSTR = logSTR & Cells(21, "B").Value & " , " 
    logSTR = logSTR & Cells(22, "B").Value & " , " 
    logSTR = logSTR & Cells(23, "B").Value & " , " 
    logSTR = logSTR & Cells(24, "B").Value & " , " 
    logSTR = logSTR & Cells(25, "B").Value & " , " 
    logSTR = logSTR & Cells(26, "B").Value & " , " 
    logSTR = logSTR & Cells(27, "B").Value & " , " 
    logSTR = logSTR & Cells(28, "B").Value & " , " 
    logSTR = logSTR & Cells(29, "B").Value & " , " 
    logSTR = logSTR & Cells(30, "B").Value & " , " 
    logSTR = logSTR & Cells(31, "B").Value & " , " 
    logSTR = logSTR & Cells(32, "B").Value & " , " 
    logSTR = logSTR & Cells(33, "B").Value & " , " 
    logSTR = logSTR & Cells(35, "B").Value & " , " 
    logSTR = logSTR & Cells(36, "B").Value & " , " 
    logSTR = logSTR & Cells(37, "B").Value & " , " 
    logSTR = logSTR & Cells(38, "B").Value & " , " 
    logSTR = logSTR & Cells(39, "B").Value & " , " 
    logSTR = logSTR & Cells(40, "B").Value & " , " 
    logSTR = logSTR & Cells(41, "B").Value & " , " 
    logSTR = logSTR & Cells(42, "B").Value & " , " 
    logSTR = logSTR & Cells(45, "B").Value & " , " 
    logSTR = logSTR & Cells(46, "B").Value & " , " 
    logSTR = logSTR & Cells(47, "B").Value & " , " 
    logSTR = logSTR & Cells(48, "B").Value & " , " 
    logSTR = logSTR & Cells(49, "B").Value & " , " 
    logSTR = logSTR & Cells(50, "B").Value & " , " 
    logSTR = logSTR & Cells(51, "B").Value & " , " 
    logSTR = logSTR & Cells(52, "B").Value & " , " 
    logSTR = logSTR & Cells(54, "B").Value & " , " 
    logSTR = logSTR & Cells(55, "B").Value & " , " 
    logSTR = logSTR & Cells(56, "B").Value & " , " 
    logSTR = logSTR & Cells(57, "B").Value & " , " 
    logSTR = logSTR & Cells(58, "B").Value & " , " 
    logSTR = logSTR & Cells(59, "B").Value & " , " 
    logSTR = logSTR & Cells(60, "B").Value & " , " 
    logSTR = logSTR & Cells(61, "B").Value & " , " 
    logSTR = logSTR & Cells(62, "B").Value & " , " 
    logSTR = logSTR & Cells(63, "B").Value & " , " 
    logSTR = logSTR & Cells(64, "B").Value & " , " 
    logSTR = logSTR & Cells(66, "B").Value & " , " 
    logSTR = logSTR & Cells(67, "B").Value & " , " 
    logSTR = logSTR & Cells(68, "B").Value & " , " 
    logSTR = logSTR & Cells(69, "B").Value & " , " 
    logSTR = logSTR & Cells(70, "B").Value & " , " 
    logSTR = logSTR & Cells(71, "B").Value & " , " 
    logSTR = logSTR & Cells(72, "B").Value & " , " 
    logSTR = logSTR & Cells(73, "B").Value & " , "

    Open "T:\Typing\Client Information\Test1.csv" For Append As
    #My_filenumber
        Print #My_filenumber, logSTR Close #My_filenumber

End Sub

如果B2為XXX,則生成XXX.CSV(帶有循環!)。

Sub WriteCSVFile()
    Dim My_filenumber As Integer
    Dim i As Long
    Dim logSTR As String, fileName as String

    My_filenumber = FreeFile

    For i = 2 To 73
        logSTR = logSTR & Cells(i, "B").Value & " , "
    Next

    fileName = "T:\Typing\Client Information\" & Range("B2").Value & ".csv"

    Open fileName For Append As #My_filenumber
        Print #My_filenumber, logSTR
    Close #My_filenumber
End Sub

據我了解,現在您要做的就是將文件另存為“ B2.csv”

也許這個問題回答了您的問題,看看:

使用宏從單元格將Excel工作表保存為CSV文件格式的CSV文件

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM