Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Majik
Regular Visitor

Scheduled Data Refresh is not available for reports.

I've got a peculiar issue. I have a report which uses a table I'm creating within the M of my PBiRS (see below...) to then bounce off some APIs to actually gather the data. All work beautifully, but because it is a self-created data source, I can't schedule a refresh!

 

The solution is to simply recreate the fixed data table source as a file share which would allow me to schedule a refresh, but this seems daft, consider the source data will never change and it's the API data which is the active source in actuality.

 

My question is, is there any smoother solution to this?

 

M:

***

let
FRefTable = #table(
type table
[
#"Year"=text,
#"YearRef"=text
],
{
{"2005","R05"},
{"2006","R06/0"},
{"2006","R06/1"},
{"2006","R06/2"},
{"2006","R06/3"},
{"2006","R06/4"},
{"2007","R07/0"},
{"2007","R07/1"},
{"2007","R07/2"},
{"2007","R07/3"},
{"2007","R07/4"},
{"2008","R08"},
{"2009","R09"},
{"2010","R10"},
{"2011","R11"},
{"2012","R12"},
{"2013","R13"},
{"2014","R14"},
{"2015","R15"},
{"2016","R16"},
{"2017","R17"},
{"2018","R18"},
{"2019","R19"},
{"2020","R20"},
{"2021","R21"},
{"2022","R22"},
{"2023","R23"},
{"2024","R24"},
{"2025","R25"},
{"2026","R26"},
{"2027","R27"},
{"2028","R28"},
{"2029","R29"},
{"2030","R30"}
}
),

and then a load of data gathering stuff goes here...

***

0 REPLIES 0

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors