Recent content by ddeaton1987

  1. D

    XSL Transform only allows Access to import the last XML Value

    I posted this in my first post, are you asking for something else??? I'm not receiving any error messages either. This is what I have so far: <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="g/1999/XSL/Transform"> <xsl:template match="/"> <Weather>...
  2. D

    XSL Transform only allows Access to import the last XML Value

    I'm trying to import an XML file into my access database using an XSL Transform (I only need certain bits of data), however when I import the tables and field names come through fine now but the only values that come through are the last values listed in the XML file... for instance when i...
  3. D

    Problem importing .XML file into Access 2010 with a .XSL via transform

    This XML File is way too large to post here unfortunately and would require 3 separate posts. Please let me know if you require it to diagnose the problem... the XML file is pointing to the correct locations in the file to get the info, it's just not importing correctly.,
  4. D

    Problem importing .XML file into Access 2010 with a .XSL via transform

    First part of XML File: <response> <version>0.1</version> <termsofService>link blah blah blah</termsofService> <features> <feature>forecast10day</feature> </features> <forecast> <txt_forecast> <date>1:00 PM PST</date> <forecastdays>...
  5. D

    Problem importing .XML file into Access 2010 with a .XSL via transform

    XML File: <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl=""i can't post links w3 org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>Weather</h2> <table border="1"> <tr bgcolor="#9acd32"> <th>High</th>...
  6. D

    Problem importing .XML file into Access 2010 with a .XSL via transform

    I'm having difficulty getting my import to work... when i call on the original XML file I get too many tables... when i call on the XML file using the transform function of Access with the XSL file it gives me only two tables "body" and "tr". Body contains the value "Weather" and tr...
Top Bottom