DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub TXT_Kaydet()
If Selection.Count = 1 Then Exit Sub
Dim sat As Integer, sut As Integer, metin As String
Open ThisWorkbook.Path & "\" & "TEKDÜZEN AKTİF_" & Format(Date, "dd mm yyyy") & "-" & Format(Time, "hh_mm_ss") & ".TXT" For Output As #1
With Selection
For sat = 1 To .Rows.Count
For sut = 1 To .Columns.Count
If sut = 1 Then metin = .Cells(sat, sut)
If sut > 1 Then metin = metin & vbTab & .Cells(sat, sut)
Next: Print #1, metin: metin = Empty
Next sat
Close #1
End With: MsgBox "Bitti"
End Sub
Merhabalar, Sayın @veyselemre , Sayın @Haluk .
Aşağıdaki gibi mi mesela?
Yoksa daha pratik bir yolu mu var?
CSS:Sub SECILI_ALANI_TXT() If Selection.Count = 1 Then Exit Sub With Application dosya = .InputBox("TXT belge için isim giriniz!..") If dosya = False Then MsgBox "İşlemi iptal ettiniz.", vbInformation, "..:: Ömer BARAN ::.." Exit Sub Else: isim = dosya End If Selection.Copy: Sheets.Add After:=ActiveSheet: ActiveSheet.Paste ActiveWorkbook.SaveAs Filename:=isim, FileFormat:=xlText .ScreenUpdating = False: .DisplayAlerts = False ActiveWindow.SelectedSheets.Delete .DisplayAlerts = True: .ScreenUpdating = True End With: MsgBox "BİTTİ" End Sub