Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
92 | |
75 | |
65 | |
49 | |
36 |
User | Count |
---|---|
114 | |
89 | |
80 | |
60 | |
40 |