Saturday, August 8, 2020

Power Query - Table.TransformColumnTypes pt-BR

= Table.TransformColumnTypes(#"Removed Duplicates",{{"Column1", type date}}, "pt-BR")

No comments:

Post a Comment

Power Query - funcao limpa replace texto numero

//fnc_limpa_texto (TextValue as nullable text) => let     SafeText = if TextValue = null then "" else TextValue,     DigitsOnly...