DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Const yol = "C:\genel.TXT"
Sub DosyadanAl2()
satir = 1
Open yol For Input As 1
Do While Not EOF(1)
Line Input #1, kayit1
If kayit1 <> Empty Then
Cells(satir, 1) = kayit1
satir = satir + 1
End If
Loop
Close #1
End Sub
Sub nn()
s = InputBox("Ayrım Hangi Satırdan Başlayacak")
s2 = InputBox("Ayrım Hangi Satırda Bitecek")
h = InputBox("Aktarım Hangi Satırdan Başlayacak")
For i = s To s2
h = h + 1
c = 0
For j = 1 To 6
a = Split(" " & Cells(i, j), " ")
For tt = 1 To UBound(a)
If a(tt) <> Empty Then c = c + 1: Cells(h, c) = Replace(a(tt), "-", "")
Next
Next
Next
End Sub
Const yol = "C:\genel.TXT"
Sub DosyadanAl2()
Sheets("Genel2").Select
satir = 1
Open yol For Input As 1
Do While Not EOF(1)
Line Input #1, kayit1
If kayit1 <> Empty Then
Cells(satir, 1) = kayit1
satir = satir + 1
End If
Loop
Close #1
End Sub
Sub nn()
Sheets("genelx").Select
s = InputBox("Ayrım Hangi Satırdan Başlayacak")
s2 = InputBox("Ayrım Hangi Satırda Bitecek")
If s = "" Or s2 = "" Then Exit Sub
h = InputBox("Aktarım Hangi Hücreden Başlayacak")
x = Range(h).Row - 1
y = Range(h).Column - 1
For i = s To s2
x = x + 1
c = y
For j = 1 To 6
a = Split(" " & Sheets("genel2").Cells(i, j), " ")
For tt = 1 To UBound(a)
If a(tt) <> Empty Then c = c + 1: Cells(x, c) = Replace(a(tt), "-", "")
Next
Next
Next
End Sub
Sub Temizle()
If ActiveCell = Empty Then MsgBox "Silmek İstediğiniz Bölgeyi Tarayınız": Exit Sub
Selection.Clear
End Sub
dış veri almak işinizi görmedi mi? .txt de değiştirdiğinizi otomatik olarak excelde de değiştiriyor.