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!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
102 | |
94 | |
38 | |
30 |