Hi all,
I have a data source sheet with multiple entry by days of the month but not for all days of the month.
Eg following:
- Validity Data(d.m.y) Hours(dec)
- @08@ 02.01.2019 2.75
- @08@ 02.01.2019 3.00
- @08@ 03.01.2019 3.00
- @08@ 03.01.2019 3.00
- @08@ 03.01.2019 1.40
- @08@ 04.01.2019 1.00
- @08@ 04.01.2019 4.00
- @08@ 07.01.2019 3.00
- @08@ 07.01.2019 2.90
- @08@ 07.01.2019 3.00
- @EB@ 10.01.2019 3.00
- @EB@ 10.01.2019 3.00
- @08@ 10.01.2019 2.00
I need to create a pivot which sum “Hours” by “Data” when “Validity”=@08@ but for all days of the month even if they are not present like following:
- Date TOTH
- 01.01.2019 0.00
- 02.01.2019 5.75
- 03.01.2019 7.40
- 04.01.2019 5.00
- 05.01.2019 0.00
- 06.01.2019 0.00
- 07.01.2019 9.90
- 08.01.2019 0.00
- 09.01.2019 0.00
- 10.01.2019 2.00
- 11.01.2019 0.00
- 12.01.2019 0.00
…
I manage a pivot with daily sum and Validity=@08@ can be as filter, but i cannot manage to fill days with no data from the source sheet.
Thanks in advance for any sggestion