I am trying to find a specific substring that matches the value in the column.
After merging the column results defer because values for column 1 = Salesman no1, value for column2 is = Salesman. because of this the data frame shows empty
BCnew = df.loc[(df.Table == 'VARCUST')]
BaCnew = df.loc[(df.Table == 'VBISALES')]
Inner_merged = pd.merge(BCnew,BaCnew,how='inner', on=['Column_Desc'])
print(inner_merged)