Hi
I have a data set at day level such as;
| Date | Value |
|---|---|
| 01.10.2014 | 563,12 |
| 02.10.2014 | 321,89 |
| 03.10.2014 | |
04.10.2014 | |
| 05.10.2014 | |
| 06.10.2014 | |
| 07.10.2014 | |
| 08.10.2014 | 212,31 |
| 09.10.2014 | 534,21 |
I want to repeat the last value for the days which don't have any value.
| Date | Value |
|---|---|
| 01.10.2014 | 563,12 |
| 02.10.2014 | 321,89 |
| 03.10.2014 | 321,89 |
04.10.2014 | 321,89 |
| 05.10.2014 | 321,89 |
| 06.10.2014 | 321,89 |
| 07.10.2014 | 321,89 |
| 08.10.2014 | 212,31 |
| 09.10.2014 | 534,21 |
Is it possible with any function usage?
Thanks!