Forum Discussion
StarTechC2G
3 years agoNew Member
Problem with importation data link from the web into query
Hello, I am trying to import the daily list of EPA's list of registered companies/facilities. The link to the website is HERE. My problem is that copying the link address from the circled link in Fi...
ppm1
3 years agoSolution Sage
This approach seems to work.
let
Source = Excel.Workbook(Web.Contents("https://cdxapps.epa.gov/oar-otaq-reg-III/rest/public/reports/Part80FuelsProgramsList")),
Sheet0 = Source{[Name="Sheet0"]}[Data],
#"Promoted Headers" = Table.PromoteHeaders(Sheet0, [PromoteAllScalars=true])
in
#"Promoted Headers"
Pat
StarTechC2G
3 years agoNew Member
Where do I enter this?