stretcharm
7 years agoMemorable Member
PowerBI Custom Visuals
Its been a while since this Visual Explorer by Anonymous
https://community.powerbi.com/t5/Data-Stories-Gallery/Power-BI-Custom-Visuals-Explorer/m-p/187266
stopped working so I decided to buil...
mike_honey
5 years agoMemorable Member
This looks great. Could you possibly share the PBIX?
I'm interested to integrate the data on Custom Visual names etc with this community project for PBIX documentation and analysis:
https://www.thebiccountant.com/2021/06/27/power-bi-cleaner-gen2-is-here/
TIA
Mike
stretcharm
5 years agoMemorable Member
This report is currently broken. It was written before the web by example feature was added to powerbi so it could be written much better now.
This will get you all the names and some details. You have loop over the different pages. My version I did all the parsing and extracting in M so it was not the easiest to work with and is prone to failing when the site changes.
let
Source = Web.BrowserContents("https://appsource.microsoft.com//en-us/marketplace/apps?src=office&product=power-bi-visuals&page=1"),
#"Extracted Table From Html" = Html.Table(Source, {{"Name", ".c-heading6"}, {"Author", ".provider"}, {"Ratings", ".ratingsCount"}, {"Description", ".c-paragraph-4"}, {"Code", ".tileLink", each [Attributes][href]?}}, [RowSelector=".spza_tileWrapper"])
in
#"Extracted Table From Html"