trcalgaro Posted August 9, 2011 Report Share Posted August 9, 2011 (edited) Ola pessoalPreciso construir um code que "pegue" partes do link de pesquisa em algumas celulas da planilhaSub Consulta() Sheets("Plan1").Select Cells.Select Selection.Delete Shift:=xlUp With ActiveSheet.QueryTables.Add(Connection:="URL;http://celepar7.pr.gov.br/gta/febreaftosa/relatorio_MunFronteira.asp?cmbCampanhaVFA=25&cmbEspecieVFA=0&rdRelatorio=8&cmbMunFront=4118451", Destination:=Range("A1")) .Name = "Consulta Geral" .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 = "4" .WebPreFormattedTextToColumns = True .WebConsecutiveDelimitersAsOne = True .WebSingleBlockTextImport = False .WebDisableDateRecognition = False .WebDisableRedirections = False .Refresh BackgroundQuery:=False End With End SubEm teoria seria a construção do link seria a seguinte: With ActiveSheet.QueryTables.Add(Connection:="URL;http://celepar7.pr.gov.br/gta/febreaftosa/relatorio_MunFronteira.asp?cmbCampanhaVFA="& Sheets("BD").Range("A2") & "&cmbEspecieVFA=0&rdRelatorio=8&cmbMunFront="& Sheets("BD").Range("A3"), Destination:=Range("A1"))Mas é claro que o Code esta erradoalguém sabe como soluciono o problema?Desde já Agradeço Edited August 9, 2011 by trcalgaro Quote Link to comment Share on other sites More sharing options...
Question
trcalgaro
Ola pessoal
Preciso construir um code que "pegue" partes do link de pesquisa em algumas celulas da planilha
Em teoria seria a construção do link seria a seguinte:
With ActiveSheet.QueryTables.Add(Connection:="URL;http://celepar7.pr.gov.br/gta/febreaftosa/relatorio_MunFronteira.asp?cmbCampanhaVFA="& Sheets("BD").Range("A2") & "&cmbEspecieVFA=0&rdRelatorio=8&cmbMunFront="& Sheets("BD").Range("A3"), Destination:=Range("A1"))
Mas é claro que o Code esta errado
alguém sabe como soluciono o problema?
Desde já Agradeço
Edited by trcalgaroLink to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.