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

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.

Reply
Anonymous
Not applicable

Having a dynamic source path (folder and files)

Hi,

 

I have a PBI report which shows a monthly project details based on the excel files that the team uses on a monthly basis. The data source has:

- Monthly folder (Example, "12- December", "11 November", etc) 

 -Under each monthly folder there are monthly files ("12- Project list data.xlsx", "11- Project list data.xlsx", etc.)

 

I want to automate the data source path so that it takes the data from the current month folder and file. So for December, the source path should be "c\.....12-December\12- Project list data.xlsx". 
Is it possible to have a dynamic path so that I do not need to change the source path every month?

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

Do you have multiple years of monthly folders in the root folder? I see you only have Month number and name in the folder name without year, so I'd like to know whether "1-January" folder only includes the file for the current 2023 January? If so, you can try

= Excel.Workbook(File.Contents("C:\........root folder\" & Text.From(Date.Month(DateTime.LocalNow())) & "-" & Date.MonthName(DateTime.LocalNow()) & "\" & Text.From(Date.Month(DateTime.LocalNow())) & "-Project list data.xlsx"), null, true)

vjingzhang_0-1673592392062.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

1 REPLY 1
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

Do you have multiple years of monthly folders in the root folder? I see you only have Month number and name in the folder name without year, so I'd like to know whether "1-January" folder only includes the file for the current 2023 January? If so, you can try

= Excel.Workbook(File.Contents("C:\........root folder\" & Text.From(Date.Month(DateTime.LocalNow())) & "-" & Date.MonthName(DateTime.LocalNow()) & "\" & Text.From(Date.Month(DateTime.LocalNow())) & "-Project list data.xlsx"), null, true)

vjingzhang_0-1673592392062.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors