+ Reply to Thread
Results 1 to 1 of 1

Saving Excel (html code) to KML

Hybrid View

  1. #1
    Registered User
    Join Date
    10-01-2009
    Location
    Manassas, VA
    MS-Off Ver
    Excel 2007
    Posts
    86

    Saving Excel (html code) to KML

    I have the html code generated in Excel and all the code needed for the KML is in the 'output' sheet. How do I save all the text in the output sheet to a KML file?

    I tried the saveas to txt, and Excel doesn't save the file correctly... it adds extra " front of " and the < > tags.

    I have tried this code here that produced a correct kml file, but unless all html lines are on column A, I don't know how to add a loop that would loop thru and add all the text and indent appropriately.

    Please advice!
    Sub SaveAsKML()
        Set filePath = "C:\MyKML.kml"
       
        Open filePath For Output As #1
        
        'Write header to file
        outputText = [output!A3] & vbNewLine & [output!A4]
        Print #1, outputText  
        Close #1
    End Sub
    Attached Files Attached Files
    Last edited by Leith Ross; 09-26-2011 at 03:32 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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