Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/11/2009, 08:24
dubiweb
 
Fecha de Ingreso: octubre-2008
Mensajes: 122
Antigüedad: 15 años, 6 meses
Puntos: 7
Respuesta: Formula Inteligente y Complicada

muchas gracias por tu ayuda y también encontré este macro que me pasaron en ínter que también hace lo mismo, que te delimita y te separa en columnas aquí se los dejo para que lo vean y haber si le es útil a alguien, ya resuelve el problema igual que la solución que me dio ceSharp

Cita:
Sub desmarcar()

Columns("A:A").Select
Selection.TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=False, _
Semicolon:=False, Comma:=False, Space:=False, Other:=True, OtherChar _
:="-", FieldInfo:=Array(Array(1, 1), Array(2, 1), Array(3, 1), Array(4, 1), Array(5, _
1)), TrailingMinusNumbers:=True

With Selection
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlBottom
End With
Columns("A:E").EntireColumn.AutoFit
Range("A1").Select
ActiveWorkbook.Save
End Sub