No consigo llegar hasta la numeración automática de páginas en el Word 365. Me da un mensaje de conexión a red...
dándole a Alt+Mayúscula+P, se numeran automáticamente.
Por otro lado, también referido a la numeración de páginas, si deseamos empezar a contar páginas después de la portada y el índice, insertando secciones y rompiendo el enlace entre ellas y numerando a partir de 1, después de la rotura de enlace, conseguimos el objetivo.
divendres, 7 de juny del 2019
dimecres, 5 de juny del 2019
dimarts, 4 de juny del 2019
Scrape WEB - send to Excel
the link shows the function
Save the Macro meanwhile executing the Data Connection from Web
Then modify the Macro in order to read each page.
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=4
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=5
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=6
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=7
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=8
Sub Macro2()
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=4" _
, Destination:=Range("$A$1"))
.Name = "componentes_inversores_cargadores.php?pagina=4"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
QueryTables.Add method (Excel)
https://docs.microsoft.com/en-us/office/vba/api/excel.querytables.addSave the Macro meanwhile executing the Data Connection from Web
Then modify the Macro in order to read each page.
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=4
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=5
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=6
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=7
http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=8
Sub Macro2()
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=4" _
, Destination:=Range("$A$1"))
.Name = "componentes_inversores_cargadores.php?pagina=4"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
Same results
Sub Macro2()
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=4" _
, Destination:=Range("$A$1"))
End With
End Sub
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://calculationsolar.com/es/componentes_inversores_cargadores.php?pagina=4" _
, Destination:=Range("$A$1"))
End With
End Sub
diumenge, 2 de juny del 2019
Potència Equip Elevador
càlcul del coeficient multiplicador que cal aplicar al càlcul de potència a partir de pes i velocitat, comparat amb els valors proposats per ITE-ITA.
Subscriure's a:
Missatges (Atom)