Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
Is there any options to remove items from a list which starts with underscore.
_1,_2,_3 should be removed. It can have any number of items starting with underscore
List
A
B
_1
_2
_3
Tried List.removematchingitems that remove only exact match.
Thank you
Solved! Go to Solution.
= List.Select(YourList, each not Text.StartsWith(_,"_"))
Thank you. It works.
= List.Select(YourList, each not Text.StartsWith(_,"_"))