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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
erf01
Frequent Visitor

csv file on shared drive does not always update with scheduled refresh

One of my data sources for my report is a csv file on a shared drive. On occasion, even if the csv file has changed, the updates are not included during the scheduled refresh. I swear I saw this problem addressed once in either Guy in a Cube or by Chris Webb and it involved some advanced editor tweak to force it to refresh even if the server timestamp was out of date indicating no change. Everything else is fine (include in refresh is enabled, etc.). Does anyone have any ideas?

1 REPLY 1
Anonymous
Not applicable

Hi @erf01 ,

Can you show me the screenshot of the Configuration Plan Refresh page? I need to know what you have configured in order to find the appropriate troubleshooting direction for you!
And about advanced editor, you can add the Table.Buffer function to your query. This will effectively load the entire table into memory, and this could help with forcing a refresh. Here's an example of how you might use it:

let
    Source = Csv.Document(File.Contents("\\shared\path\to\your\file.csv"), [Delimiter=",", Columns=5, Encoding=1252, QuoteStyle=QuoteStyle.None]),
    BufferedTable = Table.Buffer(Source)
in
    BufferedTable

 

Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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

Top Solution Authors