Forum Discussion
Power bi Power Query
Hi Citah ,
Please make sure you apply step "Changed Type" before adding the custom column.
If the problem is still not resolved, please provide detailed M code. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Citah4 years agoRegular Visitor
Thank you but the problem is still there
This is the code requested i believe;
= Table.AddColumn(Source, "Custom", each [QuestionTwoStars] / List.Sum(#"Changed Type"[QuestionTwoStars]))
- v-kkf-msft4 years agoCommunity Support
Hi Citah ,
Maybe you can try these code.
= Table.AddColumn(Source, "Custom", each [QuestionTwoStars] / List.Sum(Source[QuestionTwoStars]))Or
= Table.AddColumn(#"Changed Type", "Custom", each [QuestionTwoStars] / List.Sum(#"Changed Type"[QuestionTwoStars]))If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.