Hi everyone, I know that several questions have been asked similar to this one, however, I was not able to find the thread that could help me in this regard. I have two columns with some random dates as below.
| Col A | Col B | Col C |
| DD-MM-YYYY | DD-MM-YYYY | XXXX |
I would like to filter only the transactions that have:
[Col A - Col B] more than a month and less than a year. This logic should take into account also the Leap years.
Here it is the expected output I am aiming to.
| Col A | Col B | Col C |
| 29-02-2020 | 29-03-2020 | less than a month |
| 29-02-2020 | 30-03-2020 | more than a month and less than a year |
| 29-02-2020 | 30-03-2020 | more than a month and less than a year |
| 29-02-2020 | 28-02-2021 | more than a month and less than a year |
| 30-11-2019 | 31-12-2019 | More than a month and less than a year |
Thanks!