Forum Discussion
PWWRB
Oct 13, 2022Copper Contributor
Yearfrac stopping dates in future
Want to use yearfrac instead of datedif and it works but we want to have it give a value of 0 if one of the dates is in the future. I want to figure out how long someone has worked for us based on t...
- Oct 13, 2022
Let's say you have dates in D2 and E2.
=IF(OR(D2:E2>TODAY()),0,YEARFRAC(D2,E2))
This can be filled down.
If you want to compare D2 to today's date:
=IF(D2>TODAY(),0,YEARFRAC(D2,TODAY()))
HansVogelaar
Oct 13, 2022MVP
Let's say you have dates in D2 and E2.
=IF(OR(D2:E2>TODAY()),0,YEARFRAC(D2,E2))
This can be filled down.
If you want to compare D2 to today's date:
=IF(D2>TODAY(),0,YEARFRAC(D2,TODAY()))
- PWWRBOct 13, 2022Copper ContributorAwesome. I use today in a seperate tab so will give this a whirl tomorrow.
- PWWRBOct 19, 2022Copper Contributor
HansVogelaar seems my colleague is happy with your solution. Thank you
- HansVogelaarOct 19, 2022MVP
Good to hear that. Thanks for the feedback.