Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi everyone,
Am new to Power BI and will like to know how I can transform a column with different data format using formula.
I have varying data format (as below) that can be found in 1 column :
How can I tweak a column like this in Power BI? Is there a formula in power BI? Or should I be taking multiple steps to resolve this?
There are multiple rows for each format.
Thank you.
You can use List functions to get your desired result, starting with Text.Split(). Use the expression below in a Custom Column. Also, you can paste the below M code into a blank query (paste over the existing text in Advanced Editor), to see how to do it.
= List.Average(List.Transform(Text.Split([Column1],"-"), each Number.FromText(_)))
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WUjExMDBQitUBsozMDQx0VUwsQfxYAA==", 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}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each List.Average(List.Transform(Text.Split([Column1],"-"), each Number.FromText(_)))),
#"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Custom", Currency.Type}})
in
#"Changed Type1"
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi @Anonymous ,
I am not clear about your requirement, if possible could you please inform me more detailed information(such as your expected output and your sample data )? Then I will help you more correctly.
Please do mask sensitive data before uploading.
Thanks for your understanding and support.
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
First step is to identify the various scenarios. Besides the column having one value and two values separated by the minus sign, are there any other expected scenarios? Does the currency sign always appear consistently? Are you ever expecting to see negative values?
Once you have sorted the scenarios you can use Power Query conditional processing (aka IF 🙂 ) and Text-to-Number functions like Number.FromText
https://docs.microsoft.com/en-us/powerquery-m/number-fromtext
to achieve your desired result.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 8 | |
| 7 | |
| 7 |