- Katılım
- 1 Aralık 2008
- Mesajlar
- 244
- Excel Vers. ve Dili
- Microsoft Excel 2016 TR 32 Bit
Sub textbul()
Cells.ClearContents
b = Application.GetOpenFilename
Open b For Input As #1
Do While Not EOF(1)
Line Input #1, a
J = J + 1
Cells(J, 1).Value = Trim(a)
Loop
Close #1
Columns("A:A").TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=False, Space:=False, Other:=True, OtherChar _
:="$", FieldInfo:=Array(Array(1, 1))
Range("A1").Select
End Sub