Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
¡hola!
Necesito eliminar líneas de mis datos que tienen menos de 9 caracteres. ¿Cómo puedo hacerlo?
¡gracias!
Solved! Go to Solution.
No @LucasFiorini ,
Por favor refiérase a mi muestra.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WSoQDpVgdJC6MB6GhPFQlUHWxAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
#"Removed length less than 9" = Table.SelectRows(
#"Changed Type",
each not List.IsEmpty(
List.RemoveMatchingItems(
{Text.Length([Column1])}, {0..8}
)
)
)
in
#"Removed length less than 9"
Saludos
Lionel Chen
Si este post ayuda,entonces por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
No @LucasFiorini ,
Por favor refiérase a mi muestra.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WSoQDpVgdJC6MB6GhPFQlUHWxAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
#"Removed length less than 9" = Table.SelectRows(
#"Changed Type",
each not List.IsEmpty(
List.RemoveMatchingItems(
{Text.Length([Column1])}, {0..8}
)
)
)
in
#"Removed length less than 9"
Saludos
Lionel Chen
Si este post ayuda,entonces por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
@LucasFiorini Agregue una nueva columna en Power Query y use Text.Length([Column]). A continuación, puede filtrar en función de esa columna y, a continuación, quitar la columna.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.