I have two matrix as like this
Vehicle1 Year type
Car1      20    A
Car2      21    A
Car8      20    A
Second one
Vehicle2 Year type
Car1      20    M
Car2      21    M
Car7      90    M
I just need to combine the matrix based on the first column(Vehicle) and need to mark common as A/M as like this
Vehicle  Year type
Car1      20  A/M
Car2      21  A/M
Car7      90   M
Car8      20   A
I used merge function for this but it only printing the common one
 
     
     
     
    