Forum Discussion
get table form excel URL
Hello.
I have an excel file that includes a list of URL.
<Sample list in Excel file>
https://en.wikipedia.org/wiki/Whole_Foods_Market
https://en.wikipedia.org/wiki/Walmart
...and more.
I would like to get a specific table (following picture ) in all URL.
This is just one table but would like to see all data in one table.
Is it possible?
8 Replies
- sktneerResolver I
You may create a custom function called fxWebData using the following query...
(url) => let Source = Web.Page(Web.Contents(url))[Data]{0} in SourceAnd then convert your data with URL lists into an Excel Table and rename it URLs and then create a blank query with the following M Query.
let Source = Excel.CurrentWorkbook(){[Name="URLs"]}[Content], #"Changed Type" = Table.TransformColumnTypes(Source,{{"URL", type text}}), ExtractingCompanyFromURL = Table.AddColumn(#"Changed Type", "Company", each Text.AfterDelimiter([URL], "/", {0, RelativePosition.FromEnd}), type text), InvokingCustomFunction = Table.AddColumn(ExtractingCompanyFromURL, "Data", each fxWebData([URL])), RemovedTheURLColumn = Table.RemoveColumns(InvokingCustomFunction,{"URL"}), FinalData = Table.ExpandTableColumn(RemovedTheURLColumn, "Data", {"Column1", "Column2"}, {"Column1", "Column2"}) in FinalDataFor details, refer to the attached.
You may get data privacy warning first time and you will need to click on Continue and choose Public from both the comboboxes.
Regards,
Subodh Kumar Tiwari (sktneer)- AnonymousNot applicable
Thank you for your advice!
I just changed with my real URL and done a same thing.
my column show's like this😥
Sorry for asking you again and Thank you😊
- sktneerResolver I
That doesn't look like a URL.
Why not share the file and let me know which site you want to fetch the data from based on the string which you call as URLs?
How do these strings construct a web address?
- AnonymousNot applicable
HI Anonymous,
If your records structure not dynamic changes every times, it is possible to coding some M query codes to analytic and extract the fields you wanted from these records.
Can you please share some dummy data with the raw data structure that you received(remove sensitive data) and the expected result to test? It should help us to do the test on transform/extract your records as a common query table format.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng