Search And Download Subtitles By VBA
Feb 23, 2014
I'm trying to use macros in order to download subs directly from the Excel sheet. The idea is put the name of the film or television series in an exce cell. When you set enter, the vba programme search the subtitles into the web site (such as Search in 6.626.100 subtitles | SubtitleSeeker.com : Seek & Find Subtitles, or Subtitulos de Series - Comunidad hispana de traduccion de Subtitulos) and then download the right sub into a local folder.
I have found information about API for windows, and I used a code to download a statical file (without searching), but how to download files after queries.
View 2 Replies
ADVERTISEMENT
Jun 6, 2014
I have an export spreadsheet which details information from column a to column p which i need ...(supplier code...net value..vat...comments..etc)
However there are also subheaders, sub totals titles which take up entire rows and contains data i do not need.
Is there a way of telling excel to choose certain rows (eg ...A19 to P19, A20, to P20, A45 to P45 )
depending on if the first cell of the rows i need eg Cell A19,A20, A45 etc contains a supplier code such as from the following list :
AC01NET
AD05
210
003
BL01
KF01
KF01
CA06
I would need to paste the selected rows into another sheet
View 11 Replies
View Related
Nov 12, 2008
I have been working on automating IE. Part of my task involves using explorer to download a file from a given url and save it to disk. I've figured out how to launch explorer and start the download, but then a dialogue box appears asking whether to save the file and where to save it. how do I automatically get past this and save the file to e.g "quotes.xls"?
View 7 Replies
View Related
Aug 29, 2009
I have looked through the XL2007 security settings and can't find any way to list a (known secure) hyperlink as trusted so that it will download without manual intervention.
View 11 Replies
View Related
Oct 23, 2008
I don't know why my Sum/Offset formula is not functioning correctly. =SUM(OFFSET(Download!H2,0,MATCH($B$3,Data!A1:P1,0)))
I'm trying to attain the sum of each name from the Download sheet tab but my formula returns a 0 instead of 2,181(the correct answer). The rows on the Download sheet are varies so I thought the Offset formula would be best. Could you review my spreadsheet and formula? Can this formula accommodate an exclusion criteria? example sum all the count except for the one with the maximum time from column D?
View 2 Replies
View Related
Dec 7, 2006
how to download data from SAP to excel?
View 8 Replies
View Related
Jan 26, 2012
I wanted to know how to download live data (stock data from a a website) through VBA.
View 1 Replies
View Related
May 16, 2012
I know how to insert pictures into Excel, but how do I download them from Excel into my computer.
View 1 Replies
View Related
Jun 2, 2014
I have the following code that I want to download everyfile at the listed ftp site to a folder on my computer. I was thinking about trying to make a key with dates in thisworkbook sheet1 starting in cell A1 and have it loop through.
Code:
Private Declare Function URLDownloadToFile Lib "urlmon" Alias "URLDownloadToFileA" (ByVal pCaller As Long, ByVal szURL As String, ByVal szFileName As String, ByVal dwReserved As Long, ByVal lpfnCB As Long) As Long
[Code].....
View 1 Replies
View Related
Mar 23, 2007
how can i create a macro to open the page
[url]
and download all the form into excel automatically?
View 9 Replies
View Related
Jun 13, 2008
I have a list of 2000 hyperlinks (http) that I need to download, I'm working on a corporate network so I can't just use a mass download client. Cany anyone give me some guidance creating a macro to save the target of the hyperlink as a file then move on to the next hyperlink until the list is exhausted.
View 9 Replies
View Related
Jun 19, 2008
I need to do seems quite simple, I want to grab the source of a webpage into a string (where I'll then to some fiddling about with it to strip it down to the information which I need). Currently I'm trying to do it using the webbrowser object and meddling around with the .document properties, but I can't figure it out.
UserForm1.WebBrowser1.Navigate UserForm1.address.Value
grrr = UserForm1.WebBrowser1.Document.body.innerText
UserForm1.sourceoutput.Value = CStr(grr)
View 9 Replies
View Related
Feb 19, 2008
microsoft toolbar buttons as I'm not especially artistic, but would like more choice when creating custom buttons ?
View 3 Replies
View Related
Jul 7, 2012
I have created some code that directs me to a web page, and i use send keys to navigate my way to the input field. In this input field I am trying to put a cell value in a range use send keys to download the file, and the repeat the process for the next cell.
Here is my code so far, it does everything right up until pasting the copied cell into the input section of the web page - the issue is it is pasting nothing
VB:
Shell "C:Program FilesMozilla Firefoxfirefox.exe " & "https://website.com", vbMaximizedFocus
Application.Wait Now + TimeValue("00:00:05")
SendKeys "{TAB}"
' Input username
[Code] .....
View 9 Replies
View Related
Mar 26, 2009
Are there any alternative places to download MOREFUNC.XLL? The link at the Morefunc for Excel site is broken, and the forums seem currently busted as well.
View 2 Replies
View Related
Jul 7, 2009
how can i use VBA tp download a file from a webpage? I've found the following that would display the source code of a webpage. I need to download a zip file and save it to the desktop.What alterations do I have to make?
Code:
Sub Downloadfile()
Dim objHttp As Object
Set objHttp = CreateObject("MSXML2.ServerXMLHTTP")
Call objHttp.Open("GET", "http:\yahoo.com", False)
Call objHttp.Send("")
Call MsgBox(objHttp.ResponseText)
End Sub
View 9 Replies
View Related
Oct 6, 2012
Ticker = "ABC"
I have made a url
[URL] ......
And try to open it
Workbooks.Open(url)
But I get the error
Object does not support this property or method
I am trying to download an xls file, copy the data to a worksheet with the name "ticker" and then close the xls download file
View 3 Replies
View Related
Jun 22, 2013
I have a code which get data from finance yahoo. When I run the code , it is giving User defined type not defined.
Private Sub UserForm_Click()
Dim URL2 As String: URL2 = "http://finance.yahoo.com/"
' to get data from the url we need to creat a win Http object_
' tools > references > select Windows Win Http Services 5.1
Dim Http2 As New WinHttpRequest
'open the url
[Code] ...........
View 1 Replies
View Related
Nov 9, 2008
i am downloading data from a website and one column of cells contains the date and the time. i only need the date and i am trying to delete the time from all cells in the column. i've tried formating but the time stays in the cell. i could go through the whole column and delete the date and time and enter only the date but that is cumbersome. i was wondering if there is a way to delete the time and keep the date in the cell?
View 9 Replies
View Related
Mar 15, 2009
Is it possible to download it into my computer?
View 9 Replies
View Related
Aug 8, 2006
How can I download a .TXT file and don't lose the formatting?
I found an example:
Option Explicit
Private Declare Function InternetGetConnectedState Lib "wininet" ( _
ByRef lpdwFlags As Long, _
ByVal dwReserved As Long) As Long
Private Declare Function InternetAutodial Lib "wininet.dll" ( _
ByVal dwFlags As Long, _
ByVal dwReserved As Long) As Long
Private Declare Function InternetAutodialHangup Lib "wininet.dll" ( _
ByVal dwReserved As Long) As Long..........................
View 4 Replies
View Related
Dec 8, 2007
i'm working with downloading data from our server. it downloads in excel 3.0 format, and the contents exceed the 65k cap by far.
now what i used to do for this when i had 2003 installed on my machine, i would open the 3.0 format file and convert it to 2003 format so i could import it into access, where i could move it into two 2003 xls files to manage by use of copy/paste from access's table to excel's spreadsheet. The 3.0 > 2003 conversion was necessary because if i try to import a 3.0 excel file into access 2003, it gives me a error that the file contains no data.
so here is my problem now. our office just updated to 2007. it appears that when you run the conversion option to 2007 format, OR just save as... and save it to a new xlsx, it stripps off the remaining data that overstacks the 3.0 format file. everything above row 65536 is lost (and this paticular file has 77k+ rows).
so i decided... "ok then i'll do it my old way". i saved it into 2003 format instead, just as i used to, and imported it into access, and guess what? it stripps it in that format too now! (the majesty of upgrades... buggs to year 2010).
so my question is... how do i get this 3.0 overstacked file format converted to xlsx format retaining ALL 77k rows in a single sheet, or how do i strip it into 2 separate xls 2003 format files? either way will work, i just need all my data so i can work with it.
View 9 Replies
View Related
May 24, 2013
How to save a file onto the computer using VBA. The code template below that I found on another forum seems promising, except when I go to the desktop to access it, the .csv file has what looks like the page's source code instead of the actual file I want. This may be because when I go to the url, it doesn't automatically download the file; rather, I am asked to save the file to a certain location (since I don't know the path name of the uploaded file on the site).
Is there any way to alter this code to accommodate this, or will I have to use a different code entirely?
VB:
Sub Test()
Dim FileNum As Long
Dim FileData() As Byte
Dim MyFile As String
Dim WHTTP As Object
[Code] .....
View 9 Replies
View Related
Jul 24, 2013
I have a sheet with 22,000 rows 6 columns of sales data from my Amazon sales each order has between 3-6 rows. When the data comes in from Amazon some of those rows wont have my sku in the sku cell. Since i use a pivot table to summarize all my sales I need a way to pull the sku from the order number that has it. I have attached a picture of my problem.
View 6 Replies
View Related
May 12, 2014
I have an excel file which contains 9 columns. Column A contains an article number i.e 12345 . Column B contains name of the product. Columns C and D contain Description and Specifications respectively. Columns E,F,G,H and I contain URL:s of images.
I want to do following.
1. Download all the images in a folder on my harddisk.
2. Copy the text in column C and place it under the text in column D.
note that I am a novice at excel and have never used macros/Javascript/VBA/etc
View 2 Replies
View Related
Feb 19, 2014
Is it possible to automatically download and import a CSV sheet from a website url [URL]... ?
View 1 Replies
View Related
Oct 10, 2008
I have a Macro with a main goal to download info from another workbook and reconcile it... the information being copied is always from a workbook called book1 so the following code is what i am using:
View 3 Replies
View Related
Nov 7, 2011
I have code with downloads files from our work intranet site. When the files download the are zipped up. Is there a code which will unzip and open these excel files?
I'm using Excel 2003.
View 2 Replies
View Related
Nov 14, 2013
Im trying to find a way to automate the download of several csv webpages into a folder on my desktop. The webpage url's use the following format:
[URL]
would it be more efficient to use some kind of batch script?
View 1 Replies
View Related
Apr 19, 2014
Back in IE8, when you tried to download a file, it'd pop up a little box asking if you wanted to download or save the file. Macros in Excel could work through it using code like 'hWnd = FindWindow("#32770", "File Download")' to get the box and interact with it.
IE11 now has an obnoxious little ribbon that appears at the bottom of the window instead of the box, so FindWindow comes up blank.
There are a number of files including .xls, xlsx, and .csv, and there isn't a static link directly to the files, so I can't just put the link in workbooks.open. Also, to get some of the files, there are logins and forms to fill in with dates and the like. I can get through all of that stuff and click the button to download, but it's that open/close button that's stumped me.
Any way to get an Excel macro to interact with that Open/Save ribbon in IE11?
View 1 Replies
View Related