Forum Discussion
Power Query / M create new column, with value from specific row and field
- 6 years ago
Hi, Joe_100
#"Added Custom" receive the a table returned by the last step. [Column5]{0} means first row/column5. Here is my test.
Table:
You may create a Custom Column as follows.
#"Changed Type" is the last step which returns a table result. [Score]{0} is the value of the first row/Score.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Got it solved by now 🙂
Not familiar with the Power Query/ M language, so i dont totally understand how it behaves.
I added a custom column and first used the following formula:
[Column5]{0}
That didn't worked.
This works, mentioning the previous step (not sure why though?):
#"Added Custom" [Column5]{0}
- v-alq-msft6 years agoCommunity Support
Hi, Joe_100
#"Added Custom" receive the a table returned by the last step. [Column5]{0} means first row/column5. Here is my test.
Table:
You may create a Custom Column as follows.
#"Changed Type" is the last step which returns a table result. [Score]{0} is the value of the first row/Score.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.