Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/04/2014, 13:04
Avatar de gasafonso
gasafonso
 
Fecha de Ingreso: septiembre-2008
Mensajes: 357
Antigüedad: 16 años, 3 meses
Puntos: 1
Centrar a la derecha columas exportadas a excel

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