Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am trying to create a real time report from the following website.
The website updates data every hour by generating a new .zip file at the bottom of the list.
The difficulty is twofold:
zip files
I think the solution is to, within Transform Data, parse the text to match the web view and then select the last row.
But I don't know how to do that or if that's the right way.
Can someone please help?
Solved! Go to Solution.
Hi @Anonymous ,
Test M code as below:
let
Source = Web.Contents("http://res1104.se.gob.ar/adjuntos/precios_eess_2013_en_adelante.zip",[Headers=[#"Accept-Encoding"="gzip"]]),
Decompress = Binary.Decompress(Source, Compression.GZip)
in
Decompress
To learn more details ,refer:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hello, Lucien
Thanks for the reply.
The problem with the solution provided is that the file path changes periodically whilst the code from your solution treats the file path as fixed.