Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
AJPF
Helper I
Helper I

expression.error when trying to add up numerics in Power Query

I have a variable called "Start" which I am trying to sum down the entire column.   It contains only 0 or 1 and it's formatted as a whole number. 

In Power Query I have: 

= Table.AddColumn(#"PREVIOUS STEP", "Start Total", each List.Sum([Start]))

but I keep getting the message: 

"Expression.Error: We cannot convert the value 1 to type List.
Details:
Value=1
Type=[Type]"

Why can I not add numeric values? 

Is there another way of doing this?  I don't care whether I do it in Power Query or as a new measure. 

1 ACCEPTED SOLUTION
Jimmy801
Community Champion
Community Champion

Hello @AJPF 

 

you get this error because List.Sum is expecting a list, but you are feeding the function a number. I don't know whats the goal you are trying to achieve. I suppose you would like to sum the whole column start. This however would result in the same number in every row, as you are not filter the column before. If this is it what you would like to achive use this formula

= Table.AddColumn(#"PREVIOUS STEP", "Start Total", each List.Sum(#"PREVIOUS STEP"[Start]))

 

If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

View solution in original post

1 REPLY 1
Jimmy801
Community Champion
Community Champion

Hello @AJPF 

 

you get this error because List.Sum is expecting a list, but you are feeding the function a number. I don't know whats the goal you are trying to achieve. I suppose you would like to sum the whole column start. This however would result in the same number in every row, as you are not filter the column before. If this is it what you would like to achive use this formula

= Table.AddColumn(#"PREVIOUS STEP", "Start Total", each List.Sum(#"PREVIOUS STEP"[Start]))

 

If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.