Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Everyone,
I need help with this. So I need 2 things:
1. to search in a list of links on a website for the link with today's date and pull that into Power BI as a source.
Ex: Today's file will be read as follows =
2. Then, the pulled table needs to append to the previous day's table. To build the dataset and have history to compare against moving forward. My thoughts are to make that top part a function that power query loops through and append to the previous day. Still not sure how to do that though
Thank you all for your help.
Actually, "+" is not Concatenate in M. Replace the "+" with "&", which concatenates text.
--Nate
Try this:
let
SourceToday = Xml.Tables(Web.Contents(weblink + "PUB_Adequecy2_"+DateTime.ToText(DateTime.LocalNow(),"yyyyMMdd") +".xml"),
SourceYesday = Xml.Tables(Web.Contents(weblink + "PUB_Adequecy2_"+DateTime.ToText(Date.AddDays(DateTime.LocalNow(),-1),"yyyyMMdd") +".xml"),
Combined=Table.Combine({SourceYesday,SourceToday})
in
Combined
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 7 | |
| 4 | |
| 3 |