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.
Hello
Is there any way to eliminate all the rows that have only numbers accompanied by commas and spaces ??
Thanks for the help you can give me.
You can add a column with this expression, and then filter out the rows with null in the new columns. Replace Column1 with TextN.
= if Text.Length([Column1]) = Text.Length(Text.Select([Column1], {"0".."9", " ", ","})) then null else [Column1]
Pat