Create a list of months between two dates
I have a dataset with two date columns: start_date and last_invoice_date for each client. I would like to generate a list of the months between these two dates (not the number of months, but the actual month names). For example, if I have: client start_date last_invoice_date A Mar 1, 2020 Jun 1, 2020 B January 10, 2018 May…