Results 1 to 8 of 8

exporting CSV from IE

Threaded View

kiwi_boer exporting CSV from IE 06-07-2017, 09:00 PM
Tinbendr Re: exporting CSV from IE 06-17-2017, 07:25 PM
kiwi_boer Re: exporting CSV from IE 06-20-2017, 11:27 PM
Tinbendr Re: exporting CSV from IE 06-21-2017, 06:42 AM
buran Re: exporting CSV from IE 06-21-2017, 07:25 AM
buran Re: exporting CSV from IE 06-21-2017, 07:02 AM
Tinbendr Re: exporting CSV from IE 06-25-2017, 03:01 PM
kiwi_boer Re: exporting CSV from IE 06-25-2017, 10:56 PM
  1. #7
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: exporting CSV from IE

    This answers your original question.
    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
    
    Public Function DownloadFile(URL As String, LocalFilename As String) As Boolean
    Dim lngRetVal As Long
    lngRetVal = URLDownloadToFile(0, URL, LocalFilename, 0, 0)
    If lngRetVal = 0 Then
        If Dir(LocalFilename) <> vbNullString Then
            DownloadFile = True
        End If
    End If
    End Function
    I've uploaded a file that has either solution.

    Sheet1 just d/ls the file.

    Sheet2 pulls the data in through a querytable to the sheet.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Need help exporting to .txt with no tab
    By connelluk in forum Excel General
    Replies: 2
    Last Post: 07-16-2014, 03:45 AM
  2. Exporting to PDF
    By Keeper00 in forum Excel General
    Replies: 4
    Last Post: 04-23-2014, 11:31 AM
  3. Exporting as XML
    By meh2424 in forum Excel General
    Replies: 0
    Last Post: 02-09-2011, 05:01 PM
  4. Exporting to CSV
    By tezdread in forum Excel General
    Replies: 2
    Last Post: 06-10-2008, 05:10 PM
  5. exporting to ACT!
    By rmaxson1104 in forum Excel General
    Replies: 3
    Last Post: 06-24-2007, 07:52 PM
  6. [SOLVED] Exporting
    By Mac Kearney in forum Excel General
    Replies: 1
    Last Post: 06-13-2006, 03:00 PM
  7. exporting
    By njanja in forum Excel General
    Replies: 4
    Last Post: 04-11-2006, 07:23 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1