Forum Discussion
miguelflores
Advocate I
9 years agoHow to get month in a date
Hi! I'm encountering a road block, how do i get the month in a date data type? I have a column date hired and regularization date. I want to compute for the 5, 3 and 1 month remaining before reg...
- 9 years ago
Please try this
Months Between = IFERROR(DATEDIFF(
[date_hired],
[regularization_date],
MONTH
),-1)
Phil_Seamark
Microsoft Employee
9 years agoPlease try this
Months Between = IFERROR(DATEDIFF(
[date_hired],
[regularization_date],
MONTH
),-1)
miguelflores
Advocate I
9 years agoThanks Phil! I got it! haha