I want to do the following in Power Query (2 different Tables)
If Table 1 Column 1 = Table 2 Column 1 then "yes" else "No"
So basically if the cell in table 1 column 1 has the same information as the cell in Table 2 column 1 then I want it to say yes otherwise no.
I tried doing the following but everything comes out as no when I know it isn't the case:
=Table.AddColumn(#"Replaced Value2", "Custom", each if Table1 [Column 1] = [Column 1] then "it's there" else "not there"
Any help would be greatly appreciated. Thanks.
If Table 1 Column 1 = Table 2 Column 1 then "yes" else "No"
So basically if the cell in table 1 column 1 has the same information as the cell in Table 2 column 1 then I want it to say yes otherwise no.
I tried doing the following but everything comes out as no when I know it isn't the case:
=Table.AddColumn(#"Replaced Value2", "Custom", each if Table1 [Column 1] = [Column 1] then "it's there" else "not there"
Any help would be greatly appreciated. Thanks.