You need to sign in to do that
Don't have an account?

Formula to display a name of the months ?
In Opportunity i have the fields - start date & end date
Depending on the fields i want to display names in between the two dates..
please see the screenshot Attached
Hi
Thanks for the reply, if u c my query clearly i want to display the month names from start date to end date.
Start date is - jan -
End date is - April
Resulting Formula will have to show -
January - $$$$
February - $$$$
March - $$$$
April - $$$$
Here is my formula
CASE( MONTH( Start_Date__c ) , 1, "January" +' - '+'$',
1, "February" +' - '+'$',
1, "March" +' - '+'$',
1, "April" +' - '+'$',
1, "May" +' - '+'$',
1, "June" +' - '+'$',
1, "July" +' - '+'$',
1, "August" +' - '+'$',
1, "September" +' - '+'$',
1, "October" +' - '+'$',
1, "November" +' - '+'$',
1, "December" +' - '+'$',
'None')
+ TEXT(Amount_Monthly_Breakout__c )
Please help me to add end date here...