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,
I have a problem in my query where I have this titles that are the same, but the difference is that one says Spanish at the end, and the other one says English.
Their ID is also different, so the only thing that is equal is everything in the title before the language specification. I need to eliminate one of them, and only stay with one eLearning per employee.
Please help!
Solved! Go to Solution.
Hi @keylian031987 ,
My solution is to split English and Spanish, and then filter out English or Spanish to keep one.
Sample data:
1.Split Column By Delimiter
2.Filter the Column1.2
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @keylian031987 ,
My solution is to split English and Spanish, and then filter out English or Spanish to keep one.
Sample data:
1.Split Column By Delimiter
2.Filter the Column1.2
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Here is a solution
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WSkxKVjAyMDLWNTJV0FUILkjMyyzOUIrViVZKSU1DknHNS8/BLoOsB9U0t6LUvGSIREVlFZKEc0ZmXmpxKhYtcGtiAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Title = _t]),
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.BeforeDelimiter([Title], " - ")),
#"Removed Duplicates" = Table.SelectColumns(Table.Distinct(#"Added Custom", {"Custom"}), "Title")
in
#"Removed Duplicates"
Check out the July 2025 Power BI update to learn about new features.