My range in Excel is as follows:
Range("S15").Select
Range(Selection, Selection.End(xlDown)).Select, and I have to save this range automatically in Notepad with a macro. 
I have already this code:
Option Explicit
Sub Step_6_test()
Dim FilePath As String
Dim CellData As String
Dim LastCol As Long
Dim LastRow As Long
LastCol = ActiveSheet.UsedRange.SpecialCells(xlCellTypeLastCell).Column
LastRow = ActiveSheet.UsedRange.SpecialCells(xlCellTypeLastCell).Row
CellData = ""
FilePath = Application.DefaultFilePath & "\auth.csv"
Open FilePath For Output As #2
For i = 1 To LastRow
    For j = 1 To LastCol
        If j = LastCol Then
            CellData = CellData + Trim(ActiveCell(i, j).Value)
        Else
            CellData = CellData + Trim(ActiveCell(i, j).Value) + ","
        End If
    Next j
    Write #2, CellData
    CellData = ""
Next i
Close #2
MsgBox ("Done")
End Sub
But this code is for saving it in a Excel text file, but I want to save my range in Notepad automatically. How can I Change the code for saving my range in notepad?
 
    