Forum Discussion
domtrump
Helper II
3 years agoCalculated Column for one year from today
I thought this would be really simple, but it is proving to be a serious nusance. All I want to do is determine if a date in one column of my table is within the last 12 months. I need this in a calc...
- 3 years ago
Try:
IF(DATEDIFF(TODAY(),[Specific Date], DAY) <= 364,"ACTIVE","NOT ACTIVE")
vicky_
Super User
3 years agoTry:
IF(DATEDIFF(TODAY(),[Specific Date], DAY) <= 364,"ACTIVE","NOT ACTIVE")