Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hey,
I Just want to add a column to my table but I don't know how to write it on PBI.
thanks for everything.
Solved! Go to Solution.
Hi @dolevh,
Using below M code:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjYwUNJRMjLUdSwoAjJMLYyUYnWilUywCMcCAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Hours = _t, Month = _t, ID = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Hours", Int64.Type}, {"ID", Int64.Type}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Epic %", each [Hours]/List.Sum(Table.SelectRows(#"Changed Type",(x)=>x[Month]=[Month] and x[ID]=[ID])[Hours])),
#"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Epic %", Percentage.Type}})
in
#"Changed Type1"
And you will see:
Check my .pbix file attached.
Best Regards,
Kelly
Did I answer your question? Mark my reply as a solution!
Hi @dolevh,
Using below M code:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjYwUNJRMjLUdSwoAjJMLYyUYnWilUywCMcCAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Hours = _t, Month = _t, ID = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Hours", Int64.Type}, {"ID", Int64.Type}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Epic %", each [Hours]/List.Sum(Table.SelectRows(#"Changed Type",(x)=>x[Month]=[Month] and x[ID]=[ID])[Hours])),
#"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Epic %", Percentage.Type}})
in
#"Changed Type1"
And you will see:
Check my .pbix file attached.
Best Regards,
Kelly
Did I answer your question? Mark my reply as a solution!
@dolevh
Do you need it as Power Query or DAX solution?
paste your sample data and the expected result from Excel in your reply
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
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 |
|---|---|
| 14 | |
| 12 | |
| 10 | |
| 7 | |
| 6 |