Ver Mensaje Individual
  #7 (permalink)  
Antiguo 17/04/2014, 09:15
Avatar de gnzsoloyo
gnzsoloyo
Moderador criollo
 
Fecha de Ingreso: noviembre-2007
Ubicación: Actualmente en Buenos Aires (el enemigo ancestral)
Mensajes: 23.324
Antigüedad: 17 años
Puntos: 2658
Respuesta: Centrar a la derecha columas exportadas a excel

Cita:
Iniciado por gasafonso Ver Mensaje
Hola amigos tengo este codigo

Código vb:
Ver original
  1. Dim I As Long, j As Long
  2.     Dim objExcel As Object
  3.     Dim objWorkbook As Object
  4.     On Error Resume Next ' por si se cierra Excel antes de cargar los datos
  5.    Set objExcel = CreateObject("Excel.Application")
  6.     objExcel.Visible = False
  7.     Set objWorkbook = objExcel.Workbooks.Add
  8.     For I = 0 To grilla.Rows - 1
  9.        grilla.Row = I
  10.         For j = 0 To grilla.Cols - 2
  11.             grilla.Col = j
  12.             If I = 0 Then
  13.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).Interior.Color = &H80C0FF
  14.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).Font.Bold = True
  15.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).Value = grilla.text
  16.             Else
  17.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).Style = "Comma"
  18.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).NumberFormat = "_-* #,##0.0_-;-* #,##0.0_-;_-* ""-""??_-;_-@_-"
  19.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).NumberFormat = "_-* #,##0_-;-* #,##0_-;_-* ""-""??_-;_-@_-"
  20.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).NumberFormat = "_-* #,##0_-"
  21.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).Interior.Color = &HC0FFFF
  22.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).Value = grilla.text
  23.                 objWorkbook.ActiveSheet.Cells(I + 1, j + 1).HorizontalAlignment = xlRight
  24.             End If
  25.  
  26.         Next
  27.                objWorkbook.ActiveSheet.Cells(I + 1, 1).NumberFormat = "_-* dd/mm/yyyy_-"
  28.                
  29.     Next
  30.     objExcel.Cells.Select
  31.     objExcel.selection.EntireColumn.AutoFit    ' Ancho de columna
  32.    objWorkbook.ActiveSheet.Range("A1:h59").Borders().LineStyle = 1
  33.     objWorkbook.ActiveSheet.Range("A59:i59").Font.Bold = True
  34.     objExcel.Range("b1").Select
  35.     objExcel.Visible = True
  36.    
  37.     objExcel.ActiveWindow.SelectedSheets.PrintPreview ' Previsualizar informe
  38.    Set objWorkbook = Nothing
  39.     Set objExcel = Nothing

y quiero alinear a la derecha las ultimas 3 columnas y la primera

Como lo puedo hacer ? gracias
A cada Range le deberías asignar:
Código vb:
Ver original
  1. .HorizontalAlignment = Excel.XlHAlign.xlHAlignRight
__________________
¿A quién le enseñan sus aciertos?, si yo aprendo de mis errores constantemente...
"El problema es la interfase silla-teclado." (Gillermo Luque)