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
mr_oli
Helper I
Helper I

Dynamic filter on sharepoint files based on file name

Hi there,
is there any way to create dynamic filter on sharepoint file list?


Every week there are 10 or more files uploaded with specific name into sharepoint.
Since beginning of year number of files are quite huge so I want to lower that number.


I want to create dynamic filter in query editor to download files only from current week and previous week.


Logic of file name is: “POWER customer CustomerName Wk41.2020.xlsx”
Is there any way to do that?

2 ACCEPTED SOLUTIONS
AlB
Community Champion
Community Champion

Hi @mr_oli 

With Date.WeekOfYear(DateTime.LocalNow()) you can get the current week number. You can then build the substrings you want to look for:

currentWKNum = Date.WeekOfYear(DateTime.LocalNow()),

s1 = "Wk" & Text.From(currentWKNum) & ".2020",

s2 = "Wk" & Text.From(currentWKNum-1) & ".2020"

 

and finally use those substring in a filter operation to select only the rows with the names of the files you're interested in. I guess the first step when loading data from Sharepoint in PQ is a table with info on each file on each row, probably with a Name column (or similar) with the name of the file.

= Table.SelectRows(#"NameOfTableWithFilesInfo", each List.Contains( {s1,s2}, [Name]))

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

View solution in original post

AlB
Community Champion
Community Champion

@mr_oli 

Apologies, I made a mistake in the filtering. It should be

Text.Contains([Name], s1) or Text.Contains([Name], s2)

instead of the

List.Contains({s1,s2}, [Name]) 

we were using

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

View solution in original post

4 REPLIES 4
AlB
Community Champion
Community Champion

Hi @mr_oli 

With Date.WeekOfYear(DateTime.LocalNow()) you can get the current week number. You can then build the substrings you want to look for:

currentWKNum = Date.WeekOfYear(DateTime.LocalNow()),

s1 = "Wk" & Text.From(currentWKNum) & ".2020",

s2 = "Wk" & Text.From(currentWKNum-1) & ".2020"

 

and finally use those substring in a filter operation to select only the rows with the names of the files you're interested in. I guess the first step when loading data from Sharepoint in PQ is a table with info on each file on each row, probably with a Name column (or similar) with the name of the file.

= Table.SelectRows(#"NameOfTableWithFilesInfo", each List.Contains( {s1,s2}, [Name]))

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

@AlB it looks great but to be honest I have no idea why it is not working - no result after implementing it 

 

2020-10-05 16_16_37-Advanced Editor.png

 

2020-10-05 16_18_56-Untitled - Power Query Editor.png

but I can see that file when scrolling down

 

 

2020-10-05 16_17_18-Untitled - Power Query Editor.png

 

I removed "Wk" as it looks like case sensitive

AlB
Community Champion
Community Champion

@mr_oli 

Apologies, I made a mistake in the filtering. It should be

Text.Contains([Name], s1) or Text.Contains([Name], s2)

instead of the

List.Contains({s1,s2}, [Name]) 

we were using

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

@AlB working, thanks!

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