Hola
soy un novato en libreoffice y macros … pero se que en el office de Microsoft se pueden crear macros para traer datos financieros a el office, creo que se puede hacer cogiendo los datos de una pg web … pero no tengo la más mínima idea de como hacer esto en libre office (y no tengo el offcie de Microsoft), a continuación pego una macro que he encontrado por internet para bajar datos de una tabla de una pg web a un excell … ¿se puede hacer algo parecido con el libre office? de ser así ¿Cómo logro esto?:
"
Sub Macro1()
‘
‘ Macro1 Macro
‘ Provided by Joshua Radcliffe
‘ www.JoshuaRadcliffe.com
Dim currency1 As String
Dim currency2 As String
currency1 = Cells(4, 3).Value
currency2 = Cells(5, 3).Value
Range(“B9:C12”).Select
Selection.ClearContents
With ActiveSheet.QueryTables.Add(Connection:= _
“URL;http://finance.yahoo.com/q?s=” & currency1 & currency2 & “=X”, Destination:=Range(“$B$9”))
.Name = “q?s=” & currency1 & currency2 & “=X_1”
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingNone
.WebTables = “””table1″””
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
"
Gracias.