0
我想輸出一系列落在B列中的2個條目之間的行,這些條目是使用提示手動輸入的。例如,提示會要求我輸入第一個和第二個搜索詞,然後輸入cat,然後輸入狗。 B5有單詞貓,B50有單詞狗。我想要捕獲第6到第49行,然後傳遞它通過下面的內容並將輸出發送到文本文件。VBA導出爲文本文件。需要使用一個範圍
Sub ExportColumnsABToText()
Dim oStream As Object
Dim sTextPath As Variant
Dim sText As String
Dim sText2 As String
Dim sLine As String
Dim sType As String
Dim rIndex As Long, cIndex As Long
sTextPath = Application.GetSaveAsFilename("export.txt", "Text Files, *.txt")
If sTextPath = False Then Exit Sub
sText = ""
For rIndex = 4 To 700
sLine = ""
sType = Sheets![worksheet1].Cells(rIndex, 8).Text
If sType = "A" Or sType = "CNAME" Then
For cIndex = 1 To 2
If cIndex > 1 Then
sLine = sLine & vbTab
End If
sLine = sLine & Sheets![worksheet1].Cells(rIndex, cIndex).Text
Next cIndex
If Not Len(Trim(Replace(sLine, vbTab, ""))) = 0 Then
If rIndex > 4 Then
sText = sText & IIf(sText = "", "", vbNewLine) & sLine
End If
End If
End If
' End If
Next rIndex
Set oStream = CreateObject("ADODB.Stream")
With oStream
.Type = 2
.Charset = "UTF-8"
.Open
.WriteText sText
.SaveToFile sTextPath, 2
.Close
End With
Set oStream = Nothing
End Sub
桑托斯,我將如何整合你的代碼到上面提供的代碼?有沒有辦法讓你的代碼不包含搜索詞和整個行? - 謝謝 – Badicus
@Badicus將代碼複製到一個新的excel文件中並播放,看看它是否符合您的要求。如果不讓我知道你需要什麼變化。 – Santosh
Santosh,你提供的代碼主要是做我想做的。這些更改將使用整個行(例如列A-Z),並且不包含搜索詞,而是包含搜索詞之間的內容。 – Badicus