Macro que funciona en algunas computadoras y en otras no
Hola, Tengo la siguiente macro que hace un copia de columnas de una pestaña a otra y de ahí el archivo se guarda en archivo TXT. El error que tengo es que en algunas maquinas funciona y en otras no, copia otras columnas de otra pestaña que no son.
Sub SaveAsTxt()
Sheets("ELSAUZAL Bridge File").Select
Columns("A:J").Select
Selection.Copy
Sheets("TXT").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.NumberFormat = "0.00"
'Sheets("Instructions").Select
ActiveWorkbook.Save
Sheets("TXT").Select
Dim strFilename As String
strFilename = ThisWorkbook.Path & "\" & Sheets("Instructions").Range("FileName")
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs (strFilename), xlText
'ActiveWorkbook.Save
ActiveWindow.Close
Application.DisplayAlerts = True
End Sub