I have data table that looks like this:
Date Name
12/1/2020 Golikeri, Dave
12/2/2020 Mewman, Tim
12/6/2020 Nang, Bob
12/9/2020 Book, Tom
For each record in in the data table, I want to create duplicate but the duplicate DATE
would equal the day after the original date. So for example, the new table would look like this:
Date Name
12/1/2020 Golikeri, Dave
12/2/2020 Golikeri, Dave
12/2/2020 Mewman, Tim
12/3/2020 Mewman, Tim
12/6/2020 Nang, Bob
12/7/2020 Nang, Bob
12/9/2020 Book, Tom
12/10/2020 Book, Tom
Not quite sure where to even begin with this question but hoping someone would generously lead me on the right path - thanks!