DaGi07
June 20, 2022, 3:13pm
1
Hello to everyone,
I’m trying to find the number of month (also of different years) between two specific dates (examples. 01.01.2022 - 01.01.2023= 12 month)
then i would calculate the number of month between the current month and year and a specific date (examples. 20.06.2022 - 20-01.2023 = 7 month)
How can i get these results?
tks
Steve
June 20, 2022, 4:16pm
2
Try this (untested):
(
(
(
(
YEAR([Later Date])
- YEAR([Earlier Date])
)
* 12
)
+ MONTH([Later Date])
)
- MONTH([Earlier Date])
)
DaGi07
June 20, 2022, 6:41pm
3
tks @Steve , you are ever so precious!
1 Like
DaGi07
June 20, 2022, 7:24pm
4
i used this expression in order to find the number of month between the current month and year and a specific date (examples. 20.06.2022 - 20-01.2023 = 7 month)
(
(
(
(
YEAR([Fine_progetto])
1 Like