Ayuda con activeworkbook
Mira hice lo que me dijiste para obtener el nombre, pero cuando intento que ordene el archivo, me sale subíndice fuera del intervalo. (Como que se borra el nombre del archivo)
nombre_del_fichero = ActiveWorkbook.Name
Cells.Select
ActiveWorkbook.Worksheets("nombre_del_fichero").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("nombre_del_fichero").Sort.SortFields.Add Key:= _
Range("A1"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortTextAsNumbers
With ActiveWorkbook.Worksheets("nombre_del_fichero").Sort
.SetRange Range("A1:L816")
.Header = xlNo
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Agradecería me ayudaras nuevamente.
nombre_del_fichero = ActiveWorkbook.Name
Cells.Select
ActiveWorkbook.Worksheets("nombre_del_fichero").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("nombre_del_fichero").Sort.SortFields.Add Key:= _
Range("A1"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortTextAsNumbers
With ActiveWorkbook.Worksheets("nombre_del_fichero").Sort
.SetRange Range("A1:L816")
.Header = xlNo
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Agradecería me ayudaras nuevamente.
1 Respuesta
Respuesta de snaki Fco
1