I want to make a VBA code that opens a specific spreadsheet and saves it as tabbed text. I'm having this formulated code
Sub gerararquivotxt()
Dim intChoice As Integer
Dim strPath As string
'permitir escolher só um arquivo
Application.FileDialog(msoFileDialogOpen).AllowMultiSelect = False
'abrir a caixa de diálogo
intChoice = Application.FileDialog(msoFileDialogOpen).Show
'determinar a escolha
If intChoice <> 0 Then
'pegar o caminho do arquivo selecionado
strPath = Application.FileDialog( _
msoFileDialogOpen).SelectedItems(1)
End If
'exportar arquivo selecionado como texto
strPath.SaveAs Filename:= _
"C:\Users\USER-NOTE\Downloads\PLANILHA_RECEBIMENTO_MENSAL.txt", _
FileFormat:=xlText, CreateBackup:=False
End Sub