Here is an example of the data where there is a variable that holds a date, and the corresponding amount. Date_var Amount 05/15/2017 150 05/16/2017 175 05/19/2017 190 05/20/2017 165 As you can see, the weekend values are missing. How can I create additional records to this dataset that fill in the missing weekend dates, where the Amount will be the same as the previous business day that was populated? The data set should look like this when complete. Date_var Amount 05/15/2017 150 05/16/2017 175 05/17/2017 175 05/18/2017 175 05/19/2017 190 05/20/2017 165
... View more