So basically, I want to insert the Date from one dataframe to another based on invoiceNo. The problem is that first Dataframe has single entries for each invoice and the later one has multiple entries for the invoice number. Let me show you.
df=pd.read_csv('/content/Sells.csv')
df_details=pd.read_csv('/content/Sells_Detail.csv')
df[df['InvoiceNo']==3]
df_details[df_details['InvoiceNo']==3]
This shows up from the second for the 2nd dataframe
Now, you can understand me. I want to pick the date from the first dataframe for a specific InvoiceNo and the add a new column in 2nd dataframe where that Date will be inserted against that specific InvoiceNo. And it should happen for every InvoiceNo. Thanks!!