I have a dataframe with a date column but some values are blank or NaN, I am trying to replace all these values with a date from another column. I am trying the solution below but its not working, can someone please help
df['Date'] = df['Date'].replace(np.nan, df['Date2'])