Forum Discussion
vlook up Power query
- May 20, 2019
Nathan, yes, that will be column with tables. Click on the icon with arrows on top right of that column header and extract Price and other fields which necessary. If you build relationship correctly it return Price or null if no related price. You may keep null as it is or replace it on zero.
Nathan0763 , perhaps first you need to merge you main table with another query with prices and extract prices. After that add custom column with
if <condition> then [Text] else [Price]
However, that's not a good idea to mix texts and numbers in one column.
SergeiBaklan Thanks for your reply. I tried to merge the two worksheets but the merger is just creating a column of "Tables".
You were right about the format though, the condition returns either 0, or the price.
Nathan.
- SergeiBaklanMay 20, 2019Diamond Contributor
Nathan, yes, that will be column with tables. Click on the icon with arrows on top right of that column header and extract Price and other fields which necessary. If you build relationship correctly it return Price or null if no related price. You may keep null as it is or replace it on zero.
- Nathan0763May 20, 2019Copper Contributor
SergeiBaklan Okay, that's working perfectly, thank you very much !
Nathan.
- SergeiBaklanMay 20, 2019Diamond Contributor
Nathan0763 , you are welcome