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

Need Help For Formula Field
Hi All,
I have three fields.
Month__c -> Denotes month value (Ex. Jan, Feb etc)
Year__c -> Denotes Year value (Ex. 2013, 2014 etc)
Bill_Month__c -> Formula field need combination of both Month+Year (Ex. Nov 2013)
Please find below image.

Thanks in advance.
Thanks,
Manohar
I have three fields.
Month__c -> Denotes month value (Ex. Jan, Feb etc)
Year__c -> Denotes Year value (Ex. 2013, 2014 etc)
Bill_Month__c -> Formula field need combination of both Month+Year (Ex. Nov 2013)
Please find below image.
Thanks in advance.
Thanks,
Manohar
Assuming that Month__c and Year__c are text fields, the formula Month__c +' '+ Year__c should work for the formula field Bill_Month__c.
Regards,
Lakshmi.
Thank you.
Regards,
Lakshmi.
Thanks for your reply.
Please see Month__c and Year__c fields are picklist.
It should be like picklist only. Because every field having picklist values.
TEXT(Month__c) +' '+ TEXT(Year__c)
Kindly mark it as the solution if it solved your problem.
Thank you.