The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Dear, I have a problem and it is shown in the image:
My RUT column has the function of being my primary key and has characters that, Power BI does not make me treat it as a white or null to be able to delete. I've tried to replace, clean, trim, try also with LEN and Unicode as to know what type of character it possesses but I didn't succeed.
Please help, as I do not know how to delete all records that meet this condition. Thank you.
Solved! Go to Solution.
@fgnavarrete - When you say LEN and UNICODE below are using the DAX UNICODE and LEN functions? What does Power Query show when filtering? It is strange that it is zero-length, not blank, and the UNICODE value does not exist. Have you tried:
New Table = FILTER('Table',[RUT]<>"")
O
New Table = FILTER('Table',ISBLANK([RUT]) || LEN([RUT])>0)
@fgnavarrete - When you say LEN and UNICODE below are using the DAX UNICODE and LEN functions? What does Power Query show when filtering? It is strange that it is zero-length, not blank, and the UNICODE value does not exist. Have you tried:
New Table = FILTER('Table',[RUT]<>"")
O
New Table = FILTER('Table',ISBLANK([RUT]) || LEN([RUT])>0)
@Greg_Deckler I did the filter and it worked, I effectively remove the special characters and now the column has all its correct values, there are no longer special characters.
I turned around solving the subject and it didn't occur to me to make a filter that excludes the values from dysint to ""
Thanks a lot.
@fgnavarrete - Awesome, glad you got that solved. Weird one though!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
78 | |
67 | |
52 | |
50 |
User | Count |
---|---|
121 | |
119 | |
77 | |
62 | |
61 |