I am trying to import data from a publicly available XML source into my Google Sheet. The data is available as a direct link from an HTML representation - the XML file contains the same data. Reference: https://cordis.europa.eu/project/rcn/214839/factsheet/en and https://cordis.europa.eu/project/rcn/214839_en.xml
I've been browsing various different sources, and nothing helps so far. It seems that Google can read the data because of the statements
IMPORTXML("https://cordis.europa.eu/project/rcn/214839_en.xml", "*")
and
=IMPORTXML("https://cordis.europa.eu/project/rcn/214839_en.xml", "//*")
produce results.
However, simple XPath statements such as //rcn or /project/rcn/text() bark back at me with an "N/A" result.
What am I doing wrong here?
http://cordis.europa.euURI in the root element. - Alejandro//rcnexpression meaning that the elementrcnis under the empty namespace... - Alejandro