Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
I have tables see the attachment, can I create a new column in the table that will contain the sum of the column number?
Text | number | RESULT: sum of column number |
Text1 | 4,2 | 7,6 |
Text2 | 1,1 | 7,6 |
Text3 | 2,3 | 7,6 |
thank you answer
Solved! Go to Solution.
Strange that you already have the column in your input table.
In the code below I just add a column with a slightly different name.
let Zdroj = Excel.CurrentWorkbook(){[Name="Tabulka1"]}[Content], #"Změněný typ" = Table.TransformColumnTypes(Zdroj,{{"Text", type text}, {"number", type number}, {"RESULT: sum of column number", type number}}), #"Added Custom" = Table.AddColumn(#"Změněný typ", "Sum of column number", each List.Sum(#"Změněný typ"[number])) in #"Added Custom"
split the colums then sum, then concatenate the result but i think you might have to do some in DAX too
in power query split the columns into 2
create a calculated column that sums all in dax (i.e CALCULATE(SUM(field1),ALL(table)) , (i.e CALCULATE(SUM(field2),ALL(table))
in dax join them back together (concatenate)
might be better solutions out there
Proud to be a Super User!
You can simply add a custom column with the formula below, in which "<PreviousStep>" is the name of the previous step in your query:
= List.Sum(<PreviousStep>[number])
Otherwise it looks to me like a DAX measure would be more appropriate.
You should be able to suggest solutions in code?
CODE:
let
Zdroj = Excel.CurrentWorkbook(){[Name="Tabulka1"]}[Content],
#"Změněný typ" = Table.TransformColumnTypes(Zdroj,{{"Text", type text}, {"number", type number}, {"RESULT: sum of column number", type number}})
in
#"Změněný typ"
:CODE
thank you for answer
Strange that you already have the column in your input table.
In the code below I just add a column with a slightly different name.
let Zdroj = Excel.CurrentWorkbook(){[Name="Tabulka1"]}[Content], #"Změněný typ" = Table.TransformColumnTypes(Zdroj,{{"Text", type text}, {"number", type number}, {"RESULT: sum of column number", type number}}), #"Added Custom" = Table.AddColumn(#"Změněný typ", "Sum of column number", each List.Sum(#"Změněný typ"[number])) in #"Added Custom"
Thank you very much, that's exactly what I needed.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |