I need to achieve the following:
Data:
A B C
9612 2018-05-23 2.1
9612 2018-05-25 3.7
9615 2018-06-03 5.0
9615 2018-06-05 4.7
What I need:
A B C
9612 2018-05-23 2.1
9612 2018-05-24 2.1
9612 2018-05-25 3.7
9615 2018-06-03 5.0
9615 2018-06-04 5.0
9615 2018-06-05 4.7
The idea is that some times specific date values are missing from the data for some specific column 'A' values, so I need to loop through every value in 'B' (for each value of 'A') to find missing date values and create a new one that replicates the one before it.
Any ideas?
Thank you very much in advance!
Best Regards,