Created
August 19, 2020 16:38
-
-
Save ndthanh/5fa0f97da7761da718a467f8d188defe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], | |
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Mix", type text}}), | |
#"Added Custom" = Table.AddColumn( | |
#"Changed Type", | |
"Custom", | |
each Text.Combine(List.RemoveNulls(List.Transform(Text.ToList([Name]), | |
each if Value.Is(Value.FromText(_), type number) then _ else null)))) | |
in | |
#"Added Custom" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment