Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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!
User | Count |
---|---|
121 | |
69 | |
66 | |
56 | |
52 |
User | Count |
---|---|
181 | |
85 | |
67 | |
61 | |
53 |