Forum Discussion
Aden123
3 years agoRegular Visitor
Compare the cells value
There are 2 product names in the table. How do I display the 'Comparsion' value as 'Yes' when the cell value in 'Category' is the same as 'config', and 'No' when they are different for the same prod...
- 3 years ago
Table.AddColumn(#"Changed Type", "Custom", each if [config] = [Category] then "Yes" else "no")Hi,
add a custom column in power Query and place this.
Hope this helps.
if this has solved your problem you can mark this as a solution.
- 3 years ago
or add a conditional column like this
Burhan_Jiru
3 years agoFrequent Visitor
Table.AddColumn(#"Changed Type", "Custom", each if [config] = [Category] then "Yes" else "no")
Hi,
add a custom column in power Query and place this.
Hope this helps.
if this has solved your problem you can mark this as a solution.
Burhan_Jiru
3 years agoFrequent Visitor
or add a conditional column like this