outer join in MS Excel

后端 未结 3 2046
野趣味
野趣味 2021-01-19 10:15

do you have an idea how to join two tables with the outer join ? Know to do this in SQL, but I need Excel now.

I have a list of all employees in one column I have a

3条回答
  •  萌比男神i
    2021-01-19 10:39

    the simple way (maybe the only way?) would be with intermediate cells:

    in "results" worksheet:

      A,         B,            C              D
    fernando, vlookup(...), vlookup(...), =if(ISNA(B2),""), =if(ISNA(B2),"deafult2)
    

    then hide cols C and B

    Edit:

    Actually there's something close: Pivot Table. You can organize the data in such a way that non-refered cells will stay empty.

    But that's a different solution than formulas - it might not fit, depends on your usage.

提交回复
热议问题