Hi All,
I have an input file where in the first column I have dates. In this specific column there are always two different dates (as file relates to WoW comparison).
I need to add a step when I delete all of the rows related to prior date as presented below.
Please note number of the rows are not constant and I always need to delete prior date data so relevant date will change for every week/run.
Hope you can help me out here. 🙂
Input:
| Date | Code |
| 2021.03.12 | xyz |
| 2021.03.12 | abc |
| 2021.03.12 | wrsfswf |
| 2021.03.12 | sfdsa |
| 2021.03.12 | sdfv |
| 2021.03.12 | sdfv |
| 2021.03.12 | sdfv |
| 2021.03.19 | sac |
| 2021.03.19 | sdc |
| 2021.03.19 | sadc |
| 2021.03.19 | favvgf |
| 2021.03.19 | fgbbngh |
Necessary outcome:
| Date | Code |
| 2021.03.19 | sac |
| 2021.03.19 | sdc |
| 2021.03.19 | sadc |
| 2021.03.19 | favvgf |
| 2021.03.19 | fgbbngh |
Many thanks,
Agi