Python Pandas Question:
Looking to search Two Excel spreadsheets for equal Matches (example find serial number found in column('Serial Number') in 'fileA' and a column('Serial Number') in 'fileB') and place the Output in a New File or df.
I apologize if this has already has been addressed previously.
import pandas as pd
df1=pd.read_excel("OPS Manager Inventory Report.xlsx")
df2=pd.read_excel("Book1.xlsx")
df1['Advanced Report'].isin(df2['Serial Number']).value_counts(normalize=True)*100
False 83.838384
True 16.161616
Name: Advanced Report, dtype: float64