The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
How can filter from a sharepoint folder with file name
Course439.csv
Course196.csv
Course111.csv
Courseany3digit.csv
Thanks
Solved! Go to Solution.
HI,
use the following filter
= Table.SelectRows(#"Changed Type", each
Text.StartsWith([Name], "Course") and
Text.EndsWith([Name], ".csv") and
Text.Length([Name]) >= 8 and
List.Contains({"0".."9"}, Text.Middle([Name], 6, 1)))
Before Filter
after filter
HI,
use the following filter
= Table.SelectRows(#"Changed Type", each
Text.StartsWith([Name], "Course") and
Text.EndsWith([Name], ".csv") and
Text.Length([Name]) >= 8 and
List.Contains({"0".."9"}, Text.Middle([Name], 6, 1)))
Before Filter
after filter
Hi @ashmitp869 ,
Thank you for reaching out to the Microsoft Community Forum.
If @kushanNa , response has resolved your query, please mark it as the Accepted Solution to assist others. Additionally, a 'Kudos' would be appreciated if you found this response helpful.
Thank you
Hi @ashmitp869 ,
Thank you for reaching out to the Microsoft Community Forum.
If @kushanNa , response has resolved your query, please mark it as the Accepted Solution to assist others. Additionally, a 'Kudos' would be appreciated if you found this response helpful.
Thank you
@ashmitp869 click the filter (down arrow) and use text filter -> begins wtih
k on the filter and then use start withs
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
That's not possible as I have a file name CourseList which I don't want to pick
@ashmitp869 is this a fixed value for the names or based on some logic?
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
No its not fixed.
Is can be CourseXXX.csv
XXX can be any three digit (random)
User | Count |
---|---|
83 | |
83 | |
37 | |
34 | |
32 |
User | Count |
---|---|
92 | |
79 | |
61 | |
51 | |
51 |