Forum Discussion
Ad_456
4 years agoFrequent Visitor
Use a specific cell (text)
How do I reference a specific cell value in query editor - add custom column. I want to use the value of column 1 first row in a new column. How can I do that
- 4 years ago
In PQ, every statement refers to previous statement if it has to refer to a table. In general, it is always the immediate previous statement.
Hence see the below code
Source = abcde,
#"Added Custom" = gjlkd,
Result = #"Added Custom"{0}[Column1]
// See how Result refers to previous step
Ad_456
4 years agoFrequent Visitor
Sorry, I don't get it! What do you mean by "your previous step"?
Vijay_A_Verma
4 years agoMost Valuable Professional
In PQ, every statement refers to previous statement if it has to refer to a table. In general, it is always the immediate previous statement.
Hence see the below code
Source = abcde,
#"Added Custom" = gjlkd,
Result = #"Added Custom"{0}[Column1]
// See how Result refers to previous step