I have two excel tables open in rstudio. I want to combine them so that the rows missing Date of Birth in the first table are filled with the Date of Birth values in the second table. To put it in mathematical terms, I want this:
If table1.id = table2.id Then table1.dob = table2.dob
Is there a way to run such a code?