Calculate the number of Months between a Date Field and Today #inSalesforce

Calculate the number of Months between a Date Field and Today


Use formula -

MONTH(theDateField__c) + (12*(YEAR(theDateField__c)-YEAR(TODAY()))) - MONTH(TODAY())


Visual: https://www.youtube.com/watch?v=nH6b_FaZm9E

Comments