can u help me, how to do vlookup or pd merge on speccific column in the blank excel column. I just know how to do pd merge and the value come as a new column
I have a dataframe df1
index id Value Info
0 0 A1 xxx
1 1 A2 xxx
2 2 A3 xxx
3 3 A4 xxx
and also this data frame df2
index id Value
0 0 A1 Apple
1 1 A2 Orange
2 2 A3 Banana
3 3 A4 Grape
I wish to get to the following outcome when merging df1
and df2
index id Value Info
0 0 A1 Apple xxx
1 1 A2 Orange xxx
2 2 A3 Banana xxx
3 3 A4 Grape xxx